]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/choiccmn.cpp
Backed-out PNG8 patch (no time to look at why
[wxWidgets.git] / src / common / choiccmn.cpp
index ad8eb7b685a98b82f94f49339ad3f80eac6fd5c3..a4be5ca35c5e938255881f8a10ac513b06c8d027 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     26.07.99
 // RCS-ID:      $Id$
 // Copyright:   (c) wxWidgets team
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
@@ -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;
 }
 
 // ----------------------------------------------------------------------------