]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/combobox.cpp
reSWIGged
[wxWidgets.git] / src / mac / carbon / combobox.cpp
index 27aa1a58de3e840e05d6153dc326262a3e011822..795874147e8f718b5c4eea3b0c87677ad3887f01 100644 (file)
@@ -204,7 +204,9 @@ void wxComboBox::DoMoveWindow(int x, int y, int width, int height) {
 
     if ( m_text == NULL )
     {
-        m_choice->SetSize(0, 0 , width, -1);
+        // we might not be fully constructed yet, therefore watch out...
+        if ( m_choice )
+            m_choice->SetSize(0, 0 , width, -1);
     }
     else
     {