summaryrefslogtreecommitdiff
path: root/src/yuzu/about_dialog.cpp
diff options
context:
space:
mode:
authorSilverBeamx <molto.falso@gmail.com>2020-04-07 22:59:09 +0200
committerSilverBeamx <molto.falso@gmail.com>2020-04-07 22:59:09 +0200
commit863f7385dc6f7c232877bbabb5ff1068d06a7f96 (patch)
tree4697de74596143ef07f6c8c9dd7e252bda24d24a /src/yuzu/about_dialog.cpp
parent5a66ca4697d5337d591a6a57ce1bb76db5f6fc1f (diff)
Addressed feedback: switched to snake case and fixed clang-format errors
Diffstat (limited to 'src/yuzu/about_dialog.cpp')
-rw-r--r--src/yuzu/about_dialog.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/yuzu/about_dialog.cpp b/src/yuzu/about_dialog.cpp
index e7985c8a7..695b2ef5f 100644
--- a/src/yuzu/about_dialog.cpp
+++ b/src/yuzu/about_dialog.cpp
@@ -11,13 +11,14 @@
AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent), ui(new Ui::AboutDialog) {
const auto build_id = std::string(Common::g_build_id);
const auto fmt = std::string(Common::g_title_bar_format_idle);
- const auto yuzuBuildVersion = fmt::format(fmt.empty() ? "yuzu Development Build" : fmt, std::string{}, std::string{},
- std::string{}, std::string{}, std::string{}, build_id);
+ const auto yuzu_build_version =
+ fmt::format(fmt.empty() ? "yuzu Development Build" : fmt, std::string{}, std::string{},
+ std::string{}, std::string{}, std::string{}, build_id);
ui->setupUi(this);
ui->labelLogo->setPixmap(QIcon::fromTheme(QStringLiteral("yuzu")).pixmap(200));
ui->labelBuildInfo->setText(ui->labelBuildInfo->text().arg(
- QString::fromStdString(yuzuBuildVersion), QString::fromUtf8(Common::g_scm_branch),
+ QString::fromStdString(yuzu_build_version), QString::fromUtf8(Common::g_scm_branch),
QString::fromUtf8(Common::g_scm_desc), QString::fromUtf8(Common::g_build_date).left(10)));
}