]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/statbox.cpp
non-pch build fix for wxUSE_DISPLAY==0
[wxWidgets.git] / src / motif / statbox.cpp
index ae4838acdc222b3d17d34f59614cccc93c578b20..22deeec8c93a5a3ce92e28faffa68dd29c662ac5 100644 (file)
@@ -93,6 +93,8 @@ bool wxStaticBox::Create(wxWindow *parent, wxWindowID id,
     if( !CreateControl( parent, id, pos, size, style,
                         wxDefaultValidator, name ) )
         return false;
+    m_labelWidget = (WXWidget) 0;
+    PreCreation();
 
     Widget parentWidget = (Widget) parent->GetClientWidget();
 
@@ -119,9 +121,9 @@ bool wxStaticBox::Create(wxWindow *parent, wxWindowID id,
 #endif
                 NULL);
     }
-
+    
+    PostCreation();
     AttachWidget (parent, m_mainWidget, NULL, pos.x, pos.y, size.x, size.y);
-    ChangeBackgroundColour();
 
     return true;
 }