diff --git a/src/command/help.cpp b/src/command/help.cpp index 79e4808e4..aac5915f2 100644 --- a/src/command/help.cpp +++ b/src/command/help.cpp @@ -75,18 +75,6 @@ struct help_contents final : public Command { } }; -struct help_forums final : public Command { - CMD_NAME("help/forums") - CMD_ICON(forums_button) - STR_MENU("&Forums") - STR_DISP("Forums") - STR_HELP("Visit Aegisub's forums") - - void operator()(agi::Context *) override { - wxLaunchDefaultBrowser("http://forum.aegisub.org/", wxBROWSER_NEW_WINDOW); - } -}; - struct help_irc final : public Command { CMD_NAME("help/irc") CMD_ICON(irc_button) @@ -128,7 +116,6 @@ namespace cmd { void init_help() { reg(agi::make_unique()); reg(agi::make_unique()); - reg(agi::make_unique()); reg(agi::make_unique()); reg(agi::make_unique()); reg(agi::make_unique());