Drop keyboard cheat-sheet functionality

It is dead code: outdated and not in the menu or referenced anywhere.
This commit is contained in:
Mads Kiilerich 2022-10-05 22:43:04 +02:00 committed by Robin Gareus
parent ddda870cbd
commit b8fc9b63cf
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
3 changed files with 0 additions and 12 deletions

View File

@ -213,7 +213,6 @@ public:
void launch_reference ();
void launch_tracker ();
void launch_subscribe ();
void launch_cheat_sheet ();
void launch_website ();
void launch_website_dev ();
void launch_forums ();

View File

@ -89,16 +89,6 @@ ARDOUR_UI::launch_subscribe ()
PBD::open_uri ("https://community.ardour.org/s/subscribe");
}
void
ARDOUR_UI::launch_cheat_sheet ()
{
#ifdef __APPLE__
PBD::open_uri ("http://manual.ardour.org/files/a3_mnemonic_cheat_sheet_osx.pdf");
#else
PBD::open_uri ("http://manual.ardour.org/files/a3_mnemonic_cheatsheet.pdf");
#endif
}
void
ARDOUR_UI::launch_website ()
{

View File

@ -289,7 +289,6 @@ ARDOUR_UI::install_actions ()
ActionManager::register_action (common_actions, X_("tutorial"), S_("Help|Tutorial"), mem_fun(*this, &ARDOUR_UI::launch_tutorial));
ActionManager::register_action (common_actions, X_("reference"), S_("Manual|Reference"), mem_fun(*this, &ARDOUR_UI::launch_reference));
ActionManager::register_action (common_actions, X_("tracker"), _("Report a Bug"), mem_fun(*this, &ARDOUR_UI::launch_tracker));
ActionManager::register_action (common_actions, X_("cheat-sheet"), _("Cheat Sheet"), mem_fun(*this, &ARDOUR_UI::launch_cheat_sheet));
ActionManager::register_action (common_actions, X_("website"), _("Website"), mem_fun(*this, &ARDOUR_UI::launch_website));
ActionManager::register_action (common_actions, X_("website-dev"), _("Development"), mem_fun(*this, &ARDOUR_UI::launch_website_dev));
ActionManager::register_action (common_actions, X_("forums"), _("User Forums"), mem_fun(*this, &ARDOUR_UI::launch_forums));