From: Robert Roebling Date: Mon, 30 Oct 2006 18:18:26 +0000 (+0000) Subject: removed hack that used SetSizeHints() for some strange reason. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a6809fb2ad74d31769b55b054e720c39cca15fc6 removed hack that used SetSizeHints() for some strange reason. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42741 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/combocmn.cpp b/src/common/combocmn.cpp index 7073151fa7..a99beabd88 100644 --- a/src/common/combocmn.cpp +++ b/src/common/combocmn.cpp @@ -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); } }