From efb64c1885e19c3ebcc32206105146dd845d2b15 Mon Sep 17 00:00:00 2001 From: Stevoisiak Date: Fri, 13 Mar 2015 16:47:06 -0400 Subject: [PATCH] Change OnGameListCtrl_ItemActivated to OnGameListCtrlItemActivated --- Source/Core/DolphinWX/Frame.cpp | 4 ++-- Source/Core/DolphinWX/Frame.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinWX/Frame.cpp b/Source/Core/DolphinWX/Frame.cpp index ff82e1cd65..dc95d0d7e8 100644 --- a/Source/Core/DolphinWX/Frame.cpp +++ b/Source/Core/DolphinWX/Frame.cpp @@ -432,7 +432,7 @@ CFrame::CFrame(wxFrame* parent, m_GameListCtrl = new CGameListCtrl(m_Panel, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxSUNKEN_BORDER | wxLC_ALIGN_LEFT); - m_GameListCtrl->Bind(wxEVT_LIST_ITEM_ACTIVATED, &CFrame::OnGameListCtrl_ItemActivated, this); + m_GameListCtrl->Bind(wxEVT_LIST_ITEM_ACTIVATED, &CFrame::OnGameListCtrlItemActivated, this); wxBoxSizer *sizerPanel = new wxBoxSizer(wxHORIZONTAL); sizerPanel->Add(m_GameListCtrl, 1, wxEXPAND | wxALL); @@ -864,7 +864,7 @@ bool CFrame::UIHasFocus() return (focusWindow != nullptr); } -void CFrame::OnGameListCtrl_ItemActivated(wxListEvent& WXUNUSED(event)) +void CFrame::OnGameListCtrlItemActivated(wxListEvent& WXUNUSED(event)) { // Show all platforms and regions if... // 1. All platforms are set to hide diff --git a/Source/Core/DolphinWX/Frame.h b/Source/Core/DolphinWX/Frame.h index e1a7eabfd7..74bab5bbdb 100644 --- a/Source/Core/DolphinWX/Frame.h +++ b/Source/Core/DolphinWX/Frame.h @@ -349,7 +349,7 @@ private: void OnConnectWiimote(wxCommandEvent& event); void GameListChanged(wxCommandEvent& event); - void OnGameListCtrl_ItemActivated(wxListEvent& event); + void OnGameListCtrlItemActivated(wxListEvent& event); void OnRenderParentResize(wxSizeEvent& event); void StartGame(const std::string& filename); void OnChangeColumnsVisible(wxCommandEvent& event);