#include "wx/statbox.h"
+#if wxUSE_STATBOX
+
#include "gdk/gdk.h"
#include "gtk/gtk.h"
{
m_needParent = TRUE;
- PreCreation( parent, id, pos, size, style, name );
+ if (!PreCreation( parent, pos, size ) ||
+ !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
+ {
+ wxFAIL_MSG( _T("wxStaticBox creation failed") );
+ return FALSE;
+ }
m_isStaticBox = TRUE;
m_widget = gtk_frame_new(m_label.mbc_str());
- m_parent->AddChild( this );
-
- (m_parent->m_insertCallback)( m_parent, this );
+ m_parent->DoAddChild( this );
PostCreation();
SetWidgetStyle();
gtk_widget_set_style( m_widget, m_widgetStyle );
}
+
+#endif