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 );
}
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 );
}