mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Frame/TASInputDlg: Remove unused functions
This commit is contained in:
@ -929,25 +929,6 @@ void TASInputDlg::OnCloseWindow(wxCloseEvent& event)
|
||||
}
|
||||
}
|
||||
|
||||
bool TASInputDlg::TASHasFocus()
|
||||
{
|
||||
if (!m_has_layout)
|
||||
return false;
|
||||
//allows numbers to be used as hotkeys
|
||||
for (Control* const control : m_controls)
|
||||
{
|
||||
if (control != nullptr && wxWindow::FindFocus() == control->text)
|
||||
return false;
|
||||
}
|
||||
|
||||
if (wxWindow::FindFocus() == this)
|
||||
return true;
|
||||
else if (wxWindow::FindFocus() != nullptr && wxWindow::FindFocus()->GetParent() == this)
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
TASInputDlg::Stick* TASInputDlg::FindStickByID(int id)
|
||||
{
|
||||
if (id == ID_MAIN_STICK)
|
||||
|
Reference in New Issue
Block a user