]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/choiccmn.cpp
Parts of wxSizer::Show() extracted into wxSizer::GetItem() (together with documentation).
[wxWidgets.git] / src / common / choiccmn.cpp
index 0e81ac87f4938da58478da84ad9995e33ffe7082..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
 /////////////////////////////////////////////////////////////////////////////
 
 // implementation
 // ============================================================================
 
-wxChoiceBase::wxChoiceBase()
-{
-}
-
 wxChoiceBase::~wxChoiceBase()
 {
     // this destructor is required for Darwin
@@ -54,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;
 }
 
 // ----------------------------------------------------------------------------