]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/choiccmn.cpp
Semicolon fixes according to Vadim's note about being danger (OW,BCC,MinGW,DMC tested).
[wxWidgets.git] / src / common / choiccmn.cpp
index a8adee15fd460537c3d6e691c597fd796aac67e0..a4be5ca35c5e938255881f8a10ac513b06c8d027 100644 (file)
@@ -5,7 +5,7 @@
 // Modified by:
 // Created:     26.07.99
 // RCS-ID:      $Id$
-// Copyright:   (c) wxWindows team
+// Copyright:   (c) wxWidgets team
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -17,7 +17,7 @@
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma implementation "choicebase.h"
 #endif
 
@@ -50,12 +50,12 @@ wxChoiceBase::~wxChoiceBase()
 bool wxChoiceBase::SetStringSelection(const wxString& s)
 {
     int sel = FindString(s);
-    wxCHECK_MSG( sel != -1, FALSE,
+    wxCHECK_MSG( sel != -1, false,
                  wxT("invalid string in wxChoice::SetStringSelection") );
 
     Select(sel);
 
-    return TRUE;
+    return true;
 }
 
 // ----------------------------------------------------------------------------