]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/scrolbar.cpp
add m_ prefix to the member variables and remove unneeded dialogParent field (part...
[wxWidgets.git] / src / motif / scrolbar.cpp
index 6cbdf29c23e300da9c6e4353ab4ca48a424a44a3..9c35d48ea3cbb704a5227b7301412ee7acc08266 100644 (file)
@@ -40,6 +40,7 @@ bool wxScrollBar::Create(wxWindow *parent, wxWindowID id,
 {
     if( !CreateControl( parent, id, pos, size, style, validator, name ) )
         return false;
+    PreCreation();
 
     wxSize newSize =
         ( style & wxHORIZONTAL ) ? wxSize( 140, 16 ) : wxSize( 16, 140 );
@@ -53,9 +54,9 @@ bool wxScrollBar::Create(wxWindow *parent, wxWindowID id,
                            (wxOrientation)(style & (wxHORIZONTAL|wxVERTICAL)),
                            (void (*)())wxScrollBarCallback );
 
+    PostCreation();
     AttachWidget (parent, m_mainWidget, (WXWidget) NULL,
                   pos.x, pos.y, newSize.x, newSize.y);
-    ChangeBackgroundColour();
 
     return true;
 }