- // If we delete an item, we should initialize the parent panel,
- // because it could now be invalid.
- if ( GetParent()->panel->GetDefaultItem() == this)
- panel->SetDefaultItem(NULL);
+ if( !wxControlBase::CreateControl( parent, id, pos, size, style,
+ validator, name ) )
+ return FALSE;
+
+ m_backgroundColour = parent->GetBackgroundColour();
+ m_foregroundColour = parent->GetForegroundColour();
+ m_font = parent->GetFont();
+
+ return TRUE;