m_inSetValue = FALSE;
}
-wxControl::wxControl( wxWindow *parent,
- wxWindowID id,
- const wxPoint &pos,
- const wxSize &size,
- long style,
- const wxString &name )
-{
- (void)Create(parent, id, pos, size, style, name);
-}
-
-#if wxUSE_VALIDATORS
-wxControl::wxControl( wxWindow *parent,
+bool wxControl::Create( wxWindow *parent,
wxWindowID id,
const wxPoint &pos,
const wxSize &size,
const wxValidator& validator,
const wxString &name)
{
- (void)Create(parent, id, pos, size, style, name);
+ bool ret = wxWindow::Create(parent, id, pos, size, style, name);
+
+#if wxUSE_VALIDATORS
SetValidator(validator);
-}
#endif
+ return ret;
+}
+
wxControl::~wxControl()
{
// If we delete an item, we should initialize the parent panel,
wxPanel *panel = wxDynamicCast(GetParent(), wxPanel);
if (panel)
{
- if (panel->GetDefaultItem() == this)
+ if ( (wxControl *)panel->GetDefaultItem() == this)
panel->SetDefaultItem((wxButton*) NULL);
}
}