Просмотр исходного кода

Addressed feedback: switched to snake case and fixed clang-format errors

SilverBeamx 6 лет назад
Родитель
Сommit
863f7385dc
2 измененных файлов с 6 добавлено и 5 удалено
  1. 4 3
      src/yuzu/about_dialog.cpp
  2. 2 2
      src/yuzu/main.cpp

+ 4 - 3
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)));
 }
 

+ 2 - 2
src/yuzu/main.cpp

@@ -207,11 +207,11 @@ GMainWindow::GMainWindow()
 
     const auto build_id = std::string(Common::g_build_id);
     const auto fmt = std::string(Common::g_title_bar_format_idle);
-    const auto yuzuBuildVersion =
+    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);
 
-    LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", yuzuBuildVersion, Common::g_scm_branch,
+    LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", yuzu_build_version, Common::g_scm_branch,
              Common::g_scm_desc);
 #ifdef ARCHITECTURE_x86_64
     LOG_INFO(Frontend, "Host CPU: {}", Common::GetCPUCaps().cpu_string);