X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/54ff4a701f6c83aad8387a31b652f209681210cb..45b5751fb4013f2ab8db47c5fe4ac533ab324864:/samples/forty/playerdg.cpp diff --git a/samples/forty/playerdg.cpp b/samples/forty/playerdg.cpp index c85ca72865..e55cd0f93d 100644 --- a/samples/forty/playerdg.cpp +++ b/samples/forty/playerdg.cpp @@ -62,7 +62,7 @@ PlayerSelectionDialog::PlayerSelectionDialog( wxArrayString players; m_scoreFile->GetPlayerList(players); - for (int i = 0; i < players.Count(); i++) + for (unsigned int i = 0; i < players.Count(); i++) { list->Append(players[i]); } @@ -128,7 +128,7 @@ PlayerSelectionDialog::~PlayerSelectionDialog() { } -void PlayerSelectionDialog::OnSize(wxSizeEvent& event) +void PlayerSelectionDialog::OnSize(wxSizeEvent& WXUNUSED(event)) { Layout(); }