]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/clrpickercmn.cpp
bump subrelease number
[wxWidgets.git] / src / common / clrpickercmn.cpp
index 6b7ea1c7687d1d218ba1cb216609d5c571b8c3c9..03c2f5caaabe4c2da4e1ff719541a9cd1e94b239 100644 (file)
@@ -59,8 +59,13 @@ bool wxColourPickerCtrl::Create( wxWindow *parent, wxWindowID id,
 
     // we are not interested to the ID of our picker as we connect
     // to its "changed" event dynamically...
-    m_picker = new wxColourPickerWidget(this, wxID_ANY, col, wxPoint(40,0), wxSize(30,-1),
+    m_picker = new wxColourPickerWidget(this, wxID_ANY, col,
+                                        wxDefaultPosition, wxDefaultSize,
                                         GetPickerStyle(style));
+
+    // complete sizer creation
+    wxPickerBase::PostCreation();
+
     m_picker->Connect(wxEVT_COMMAND_COLOURPICKER_CHANGED,
             wxColourPickerEventHandler(wxColourPickerCtrl::OnColourChange),
             NULL, this);