]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/pickerbase.cpp
Correct names of some event binders
[wxWidgets.git] / src / common / pickerbase.cpp
index e550e651c77c069d5baa959bd01aaa2cc23c55ae..f02542619313d0b9861249c806bd9cef22ef708b 100644 (file)
@@ -75,8 +75,9 @@ bool wxPickerBase::CreateBase(wxWindow *parent,
         // NOTE: the style of this class (wxPickerBase) and the style of the
         //       attached text control are different: GetTextCtrlStyle() extracts
         //       the styles related to the textctrl from the styles passed here
-        m_text = new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition,
-                                wxDefaultSize, GetTextCtrlStyle(style));
+        m_text = new wxTextCtrl(this, wxID_ANY, wxEmptyString,
+                                wxDefaultPosition, wxDefaultSize,
+                                GetTextCtrlStyle(style));
         if (!m_text)
         {
             wxFAIL_MSG( wxT("wxPickerBase's textctrl creation failed") );
@@ -118,7 +119,7 @@ void wxPickerBase::PostCreation()
     m_sizer->Add(m_picker, HasTextCtrl() ? 0 : 1, GetDefaultPickerCtrlFlag(), 5);
 
     SetSizer(m_sizer);
-    m_sizer->SetSizeHints(this);
+    SetMinSize( m_sizer->GetMinSize() );
 }
 
 void wxPickerBase::OnTextCtrlKillFocus(wxFocusEvent &)