diff options
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r-- | src/actions/actions.cpp | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index 32bdd44ca..93294bfc0 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -189,26 +189,6 @@ impHandler(shortcut) return false; } -impHandler0(prevSocialTab) -{ - if (socialWindow) - { - socialWindow->prevTab(); - return true; - } - return false; -} - -impHandler0(nextSocialTab) -{ - if (socialWindow) - { - socialWindow->nextTab(); - return true; - } - return false; -} - impHandler0(quit) { if (!Game::instance()) @@ -675,46 +655,6 @@ impHandler0(showWindows) return false; } -impHandler0(nextShortcutsTab) -{ - if (itemShortcutWindow) - { - itemShortcutWindow->nextTab(); - return true; - } - return false; -} - -impHandler0(prevShortcutsTab) -{ - if (itemShortcutWindow) - { - itemShortcutWindow->prevTab(); - return true; - } - return false; -} - -impHandler0(nextCommandsTab) -{ - if (spellShortcutWindow) - { - spellShortcutWindow->nextTab(); - return true; - } - return false; -} - -impHandler0(prevCommandsTab) -{ - if (spellShortcutWindow) - { - spellShortcutWindow->prevTab(); - return true; - } - return false; -} - impHandler0(openTrade) { const Being *const being = localPlayer->getTarget(); |