From ef1160a7dcc9065f5321a84c142cabcef9eb9df0 Mon Sep 17 00:00:00 2001 From: Chris Elliott Date: Tue, 2 Jan 2007 20:50:07 +0000 Subject: [PATCH] fix errant __BORLAND__ see http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/70616/match=common+intl+cpp+problems+bcc git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44089 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/intl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/intl.cpp b/src/common/intl.cpp index 4be838e417..9a2dc00536 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -18,7 +18,7 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__BORLAND__) && !defined(__WXDEBUG__) +#if defined(__BORLANDC__) && !defined(__WXDEBUG__) // There's a bug in Borland's compiler that breaks wxLocale with -O2, // so make sure that flag is not used for this file: #pragma option -O1 -- 2.45.2