]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/choice.cpp
reminder added
[wxWidgets.git] / src / mac / carbon / choice.cpp
index c187d9ecc75ef2f05485fc205c175616a5ef0bed..c130d3798aa099eb4a68f8d16755fe6194fcd73b 100644 (file)
@@ -46,6 +46,9 @@ bool wxChoice::Create(wxWindow *parent, wxWindowID id,
            const wxValidator& validator,
            const wxString& name)
 {
+    if ( !wxChoiceBase::Create(parent, id, pos, size, style, validator, name) )
+        return false;
+
     Rect bounds ;
     Str255 title ;
 
@@ -60,6 +63,7 @@ bool wxChoice::Create(wxWindow *parent, wxWindowID id,
     if ( n > 0 )
         SetControl32BitValue( (ControlHandle) m_macControl , 1 ) ;
     MacPostControlCreate() ;
+    // TODO wxCB_SORT
     for ( int i = 0; i < n; i++ )
     {
         Append(choices[i]);