diff --git a/Source/Core/DolphinQt/AboutDialog.cpp b/Source/Core/DolphinQt/AboutDialog.cpp index 8bd03c5b4b..a54551fcc7 100644 --- a/Source/Core/DolphinQt/AboutDialog.cpp +++ b/Source/Core/DolphinQt/AboutDialog.cpp @@ -35,8 +35,7 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent)

%BRANCH%
-%REVISION%

-%QT_VERSION% +%REVISION%

@@ -57,14 +56,12 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent) %SUPPORT% )") .replace(QStringLiteral("%VERSION_STRING%"), - QString::fromUtf8(Common::GetScmDescStr().c_str())) + QString::fromStdString(Common::GetScmDescStr())) .replace(QStringLiteral("%BRANCH%"), // i18n: "Branch" means the version control term, not a literal tree branch. tr("Branch: %1").arg(branch_str)) .replace(QStringLiteral("%REVISION%"), - tr("Revision: %1").arg(QString::fromUtf8(Common::GetScmRevGitStr().c_str()))) - .replace(QStringLiteral("%QT_VERSION%"), - tr("Using Qt %1").arg(QStringLiteral(QT_VERSION_STR))) + tr("Revision: %1").arg(QString::fromStdString(Common::GetScmRevGitStr()))) .replace(QStringLiteral("%CHECK_FOR_UPDATES%"), tr("Check for updates")) .replace(QStringLiteral("%ABOUT_DOLPHIN%"), // i18n: The word "free" in the standard phrase "free and open source" diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index 22b109ce74..17d401f24e 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -8,6 +8,7 @@ #include #include +#include #include #include #include @@ -640,7 +641,8 @@ void MenuBar::AddHelpMenu() help_menu->addSeparator(); #endif - help_menu->addAction(tr("&About"), this, &MenuBar::ShowAboutDialog); + help_menu->addAction(tr("About &Qt"), &QApplication::aboutQt); + help_menu->addAction(tr("&About Dolphin"), this, &MenuBar::ShowAboutDialog); } void MenuBar::AddGameListTypeSection(QMenu* view_menu)