if (!PreCreation( parent, pos, size ) ||
!CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
{
- wxFAIL_MSG( _T("wxStaticBox creation failed") );
+ wxFAIL_MSG( wxT("wxStaticBox creation failed") );
return FALSE;
}
m_isStaticBox = TRUE;
- m_widget = gtk_frame_new(m_label.mbc_str());
+ if (label.IsEmpty())
+ m_widget = gtk_frame_new( (char*) NULL );
+ else
+ m_widget = gtk_frame_new( m_label.mbc_str() );
m_parent->DoAddChild( this );