X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7b5408ea7dbc55e064ad0343316245d15752710c..45b5751fb4013f2ab8db47c5fe4ac533ab324864:/samples/forty/playerdg.cpp?ds=inline diff --git a/samples/forty/playerdg.cpp b/samples/forty/playerdg.cpp index aa671d0adc..e55cd0f93d 100644 --- a/samples/forty/playerdg.cpp +++ b/samples/forty/playerdg.cpp @@ -44,7 +44,7 @@ PlayerSelectionDialog::PlayerSelectionDialog( ScoreFile* file ) : wxDialog(parent, -1, "Player Selection", - wxDefaultPosition, wxSize(250, 200), + wxDefaultPosition, wxSize(320, 200), wxDIALOG_MODAL | wxDEFAULT_DIALOG_STYLE), m_scoreFile(file) { @@ -59,18 +59,13 @@ PlayerSelectionDialog::PlayerSelectionDialog( 0, 0, wxLB_SINGLE ); -/* - Robert Roebling - int numPlayers = 0; - wxString* players = 0; - m_scoreFile->GetPlayerList(&players, numPlayers); - for (int i = 0; i < numPlayers; i++) + wxArrayString players; + m_scoreFile->GetPlayerList(players); + for (unsigned int i = 0; i < players.Count(); i++) { list->Append(players[i]); } - delete players; -*/ m_textField = new wxTextCtrl(this, -1, "", wxDefaultPosition, wxDefaultSize, 0); @@ -133,7 +128,7 @@ PlayerSelectionDialog::~PlayerSelectionDialog() { } -void PlayerSelectionDialog::OnSize(wxSizeEvent& event) +void PlayerSelectionDialog::OnSize(wxSizeEvent& WXUNUSED(event)) { Layout(); }