]> 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 06345dbdc6e7198961e0f1bd16b271a62036da2c..a4be5ca35c5e938255881f8a10ac513b06c8d027 100644 (file)
@@ -5,8 +5,8 @@
 // Modified by:
 // Created:     26.07.99
 // RCS-ID:      $Id$
-// Copyright:   (c) wxWindows team
-// Licence:     wxWindows license
+// 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
 
 // implementation
 // ============================================================================
 
+wxChoiceBase::~wxChoiceBase()
+{
+    // this destructor is required for Darwin
+}
+
 // ----------------------------------------------------------------------------
 // selection
 // ----------------------------------------------------------------------------
 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;
 }
 
 // ----------------------------------------------------------------------------