]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't prematurely return from Create before appending the choices, and etc.
authorRobin Dunn <robin@alldunn.com>
Tue, 11 Dec 2007 00:52:43 +0000 (00:52 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 11 Dec 2007 00:52:43 +0000 (00:52 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50632 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/choice.cpp

index e5f7c54da458b413af1a69151b92493b12ec3c37..0e9fdcba58aed03a866d4b8bfabc5e6e5e897d95 100644 (file)
@@ -50,14 +50,17 @@ bool wxChoice::Create(wxWindow *parent,
     const wxValidator& validator,
     const wxString& name )
 {
-    return Create(
-        parent, id, pos, size, 0, NULL,
-        style, validator, name );
+    if ( !Create( parent, id, pos, size, 0, NULL, style, validator, name ) )
+        return false;
 
     Append( choices );
 
     if ( !choices.empty() )
         SetSelection( 0 );
+
+    SetInitialSize( size );
+
+    return true;
 }
 
 bool wxChoice::Create(wxWindow *parent,