]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/textctrl.cpp
wxMenuBar::IsEnabled() now returns TRUE sometimes too
[wxWidgets.git] / src / gtk / textctrl.cpp
index ccb6dce12bcbae5bc5115662c08440c7565dfa58..04809dc1931a3779e3d6896874dea17ab5790a73 100644 (file)
@@ -114,11 +114,13 @@ bool wxTextCtrl::Create( wxWindow *parent, wxWindowID id, const wxString &value,
     m_needParent = TRUE;
     m_acceptsFocus = TRUE;
 
-    PreCreation( parent, id, pos, size, style, name );
+    if (!PreCreation( parent, pos, size ) ||
+        !CreateBase( parent, id, pos, size, style, validator, name ))
+    {
+        wxFAIL_MSG( _T("wxTextCtrl creation failed") );
+       return FALSE;
+    }
 
-#if wxUSE_VALIDATORS
-    SetValidator( validator );
-#endif // wxUSE_VALIDATORS
 
     m_vScrollbarVisible = FALSE;