Fixed player dialog listbox and app icon on wxGTK

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@50452 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2007-12-03 09:45:13 +00:00
parent 938dbb9c29
commit 5a106018fa
2 changed files with 5 additions and 4 deletions

View File

@@ -44,7 +44,7 @@ PlayerSelectionDialog::PlayerSelectionDialog(
wxListBox* list = new wxListBox(
this, ID_LISTBOX,
wxDefaultPosition, wxDefaultSize,
wxDefaultPosition, wxSize(-1, 150),
0, 0,
wxLB_SINGLE
);
@@ -76,6 +76,8 @@ PlayerSelectionDialog::PlayerSelectionDialog(
topsizer->SetSizeHints( this );
CentreOnParent();
m_OK->SetDefault();
}
void PlayerSelectionDialog::OnSize(wxSizeEvent& WXUNUSED(event))