Update FAQ function name (2/2)
This commit is contained in:
parent
db96b5ee3b
commit
b1f4de7874
1 changed files with 2 additions and 2 deletions
|
@ -840,7 +840,7 @@ void GMainWindow::ConnectMenuEvents() {
|
||||||
connect(ui.action_Open_Mods_Page, &QAction::triggered, this, &GMainWindow::OnOpenModsPage);
|
connect(ui.action_Open_Mods_Page, &QAction::triggered, this, &GMainWindow::OnOpenModsPage);
|
||||||
connect(ui.action_Open_Quickstart_Guide, &QAction::triggered, this,
|
connect(ui.action_Open_Quickstart_Guide, &QAction::triggered, this,
|
||||||
&GMainWindow::OnOpenQuickstartGuide);
|
&GMainWindow::OnOpenQuickstartGuide);
|
||||||
connect(ui.action_Open_FAQ, &QAction::triggered, this, &GMainWindow::OnFAQ);
|
connect(ui.action_Open_FAQ, &QAction::triggered, this, &GMainWindow::OnOpenFAQ);
|
||||||
connect(ui.action_Restart, &QAction::triggered, this, [this] { BootGame(QString(game_path)); });
|
connect(ui.action_Restart, &QAction::triggered, this, [this] { BootGame(QString(game_path)); });
|
||||||
connect(ui.action_Configure, &QAction::triggered, this, &GMainWindow::OnConfigure);
|
connect(ui.action_Configure, &QAction::triggered, this, &GMainWindow::OnConfigure);
|
||||||
|
|
||||||
|
@ -1828,7 +1828,7 @@ void GMainWindow::OnOpenQuickstartGuide() {
|
||||||
OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/help/quickstart/")));
|
OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/help/quickstart/")));
|
||||||
}
|
}
|
||||||
|
|
||||||
void GMainWindow::OnFAQ() {
|
void GMainWindow::OnOpenFAQ() {
|
||||||
OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/wiki/faq/")));
|
OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/wiki/faq/")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue