X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..0973b7df99407013717cc0cbe7fca4b3700cfafd:/src/univ/statbox.cpp diff --git a/src/univ/statbox.cpp b/src/univ/statbox.cpp index e1df45fb23..773f542217 100644 --- a/src/univ/statbox.cpp +++ b/src/univ/statbox.cpp @@ -17,10 +17,6 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation "univstatbox.h" -#endif - #include "wx/wxprec.h" #ifdef __BORLANDC__ @@ -55,12 +51,15 @@ bool wxStaticBox::Create(wxWindow *parent, 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)