// headers
// ----------------------------------------------------------------------------
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma implementation "univstatbox.h"
-#endif
-
#include "wx/wxprec.h"
#ifdef __BORLANDC__
long style,
const wxString &name)
{
+ // FIXME refresh just the right/bottom parts affected in OnSize
+ style |= wxFULL_REPAINT_ON_RESIZE;
+
if ( !wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name) )
- return FALSE;
+ return false;
SetLabel(label);
- return TRUE;
+ return true;
}
void wxStaticBox::DoDraw(wxControlRenderer *renderer)