]> git.saurik.com Git - wxWidgets.git/commitdiff
removed hack that used SetSizeHints() for some strange reason.
authorRobert Roebling <robert@roebling.de>
Mon, 30 Oct 2006 18:18:26 +0000 (18:18 +0000)
committerRobert Roebling <robert@roebling.de>
Mon, 30 Oct 2006 18:18:26 +0000 (18:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42741 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/combocmn.cpp

index 7073151fa7bb3d9688e79aef3c1dad75ba4b6ed1..a99beabd8827f6a33592ea6868a3066e2e6a6730 100644 (file)
@@ -830,9 +830,6 @@ wxComboCtrlBase::CreateTextCtrl(int style, const wxValidator& validator)
         m_text = new wxTextCtrl(this, wxID_ANY, m_valueString,
                                 wxDefaultPosition, wxDefaultSize,
                                 style, validator);
-
-        // This is required for some platforms (GTK+ atleast)
-        m_text->SetSizeHints(2,4);
     }
 }