]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/combobox.cpp
Small distrib updates,
[wxWidgets.git] / src / gtk1 / combobox.cpp
index 102ce9b22407b0d01ea54b17f5d21bad48ac5181..da4657688f83f108453de64b3bc3215a16275d99 100644 (file)
@@ -101,11 +101,12 @@ bool wxComboBox::Create( wxWindow *parent, wxWindowID id, const wxString& value,
     m_needParent = TRUE;
     m_acceptsFocus = TRUE;
 
-    PreCreation( parent, id, pos, size, style, name );
-
-#if wxUSE_VALIDATORS
-    SetValidator( validator );
-#endif
+    if (!PreCreation( parent, pos, size ) ||
+        !CreateBase( parent, id, pos, size, style, validator, name ))
+    {
+        wxFAIL_MSG( _T("wxComboBox creation failed") );
+       return FALSE;
+    }
 
     m_widget = gtk_combo_new();