don't limit the multiple choice dialog size to 300x200 pixels on big screens, this doesn't make sense

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48301 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-08-21 16:42:17 +00:00
parent 4fe7567d90
commit 61a11cd6fa

View File

@@ -302,11 +302,8 @@ bool wxAnyChoiceDialog::Create(wxWindow *parent,
wxListBoxBase *wxAnyChoiceDialog::CreateList(int n, const wxString *choices, long styleLbox)
{
wxSize size = wxDefaultSize;
if (wxSystemSettings::GetScreenType() > wxSYS_SCREEN_PDA)
size = wxSize(300, 200);
return new wxListBox( this, wxID_LISTBOX,
wxDefaultPosition, size,
wxDefaultPosition, wxDefaultSize,
n, choices,
styleLbox );
}
@@ -541,12 +538,8 @@ bool wxMultiChoiceDialog::TransferDataFromWindow()
wxListBoxBase *wxMultiChoiceDialog::CreateList(int n, const wxString *choices, long styleLbox)
{
wxSize size = wxDefaultSize;
if (wxSystemSettings::GetScreenType() > wxSYS_SCREEN_PDA)
size = wxSize(300, 200);
return new wxCheckListBox( this, wxID_LISTBOX,
wxDefaultPosition, size,
wxDefaultPosition, wxDefaultSize,
n, choices,
styleLbox );
}