From f779f639da34c433103267da14e03f312b92e420 Mon Sep 17 00:00:00 2001 From: ebbit1q Date: Tue, 30 Dec 2025 10:18:15 +0100 Subject: [PATCH] Apply suggestions from code review --- cockatrice/src/interface/window_main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cockatrice/src/interface/window_main.cpp b/cockatrice/src/interface/window_main.cpp index 50a90bdcb..ef712da83 100644 --- a/cockatrice/src/interface/window_main.cpp +++ b/cockatrice/src/interface/window_main.cpp @@ -938,13 +938,13 @@ void MainWindow::startupConfigCheck() const auto reloadOk0 = QtConcurrent::run([] { CardDatabaseManager::getInstance()->loadCardDatabases(); }); } - qCInfo(WindowMainStartupShortcutsLog) << "[MainWindow] Migrating shortcuts after update detected."; + qCInfo(WindowMainStartupShortcutsLog) << "Migrating shortcuts after update detected."; SettingsCache::instance().shortcuts().migrateShortcuts(); if (SettingsCache::instance().getCheckUpdatesOnStartup()) { if (QString(VERSION_STRING).contains("custom", Qt::CaseInsensitive)) { qCInfo(WindowMainStartupShortcutsLog) - << "[MainWindow] Update has changed to custom version, disabling auto update"; + << "Update has changed to custom version, disabling auto update"; SettingsCache::instance().setCheckUpdatesOnStartup(Qt::Unchecked); } else { int channel = 0; @@ -953,7 +953,7 @@ void MainWindow::startupConfigCheck() } if (SettingsCache::instance().getUpdateReleaseChannelIndex() != channel) { qCInfo(WindowMainStartupShortcutsLog) - << "[MainWindow] Update has changed beta state, updating release channel."; + << "Update has changed beta state, updating release channel."; SettingsCache::instance().setUpdateReleaseChannelIndex(channel); } }