diff options
| author | Shawn Hoffman <godisgovernment@gmail.com> | 2017-06-19 02:20:14 -0700 |
|---|---|---|
| committer | Shawn Hoffman <godisgovernment@gmail.com> | 2017-06-23 17:25:52 -0700 |
| commit | 668c6b5ce96f4d9a45ceb577f1ea353185b8dffe (patch) | |
| tree | 6bfa261f95337d8b72f97aa3ba6b652f907bae86 /Source/Core/DolphinWX/NetPlay/NetWindow.cpp | |
| parent | 1bd177561bf54e58855237e6c30c7bcaa39ab7e2 (diff) | |
DolphinWX: rename CGameListCtrl -> GameListCtrl
Diffstat (limited to 'Source/Core/DolphinWX/NetPlay/NetWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/NetPlay/NetWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/NetPlay/NetWindow.cpp b/Source/Core/DolphinWX/NetPlay/NetWindow.cpp index 25c015877c..98aefef953 100644 --- a/Source/Core/DolphinWX/NetPlay/NetWindow.cpp +++ b/Source/Core/DolphinWX/NetPlay/NetWindow.cpp @@ -58,13 +58,13 @@ NetPlayServer* NetPlayDialog::netplay_server = nullptr; NetPlayClient* NetPlayDialog::netplay_client = nullptr; NetPlayDialog* NetPlayDialog::npd = nullptr; -void NetPlayDialog::FillWithGameNames(wxListBox* game_lbox, const CGameListCtrl& game_list) +void NetPlayDialog::FillWithGameNames(wxListBox* game_lbox, const GameListCtrl& game_list) { for (u32 i = 0; auto game = game_list.GetISO(i); ++i) game_lbox->Append(StrToWxStr(game->GetUniqueIdentifier())); } -NetPlayDialog::NetPlayDialog(wxWindow* const parent, const CGameListCtrl* const game_list, +NetPlayDialog::NetPlayDialog(wxWindow* const parent, const GameListCtrl* const game_list, const std::string& game, const bool is_hosting) : wxFrame(parent, wxID_ANY, _("Dolphin NetPlay")), m_selected_game(game), m_start_btn(nullptr), m_host_label(nullptr), m_host_type_choice(nullptr), m_host_copy_btn(nullptr), |
