From d48ad19b8d2fa168118618460dcfde17bc075b4a Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 22 Feb 2015 04:07:58 -0500 Subject: [PATCH] DolphinWX: Remove unnecessary Windows-specific code in Frame.cpp wx's version of SetFocus internally calls the Windows one. --- Source/Core/DolphinWX/Frame.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Source/Core/DolphinWX/Frame.cpp b/Source/Core/DolphinWX/Frame.cpp index 2446cb4cd3..8b68e03c45 100644 --- a/Source/Core/DolphinWX/Frame.cpp +++ b/Source/Core/DolphinWX/Frame.cpp @@ -577,13 +577,7 @@ void CFrame::OnActive(wxActivateEvent& event) if (event.GetActive() && event.GetEventObject() == m_RenderFrame) { if (SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain) - { -#ifdef __WXMSW__ - ::SetFocus((HWND)m_RenderParent->GetHandle()); -#else m_RenderParent->SetFocus(); -#endif - } if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor && Core::GetState() == Core::CORE_RUN)