From f71ea7d26d5ed6a81cffbb0233bb99f0966b7111 Mon Sep 17 00:00:00 2001 From: ebbit1q Date: Tue, 30 Dec 2025 10:19:27 +0100 Subject: [PATCH] format --- cockatrice/src/interface/window_main.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cockatrice/src/interface/window_main.cpp b/cockatrice/src/interface/window_main.cpp index ef712da83..2e135d170 100644 --- a/cockatrice/src/interface/window_main.cpp +++ b/cockatrice/src/interface/window_main.cpp @@ -943,8 +943,7 @@ void MainWindow::startupConfigCheck() if (SettingsCache::instance().getCheckUpdatesOnStartup()) { if (QString(VERSION_STRING).contains("custom", Qt::CaseInsensitive)) { - qCInfo(WindowMainStartupShortcutsLog) - << "Update has changed to custom version, disabling auto update"; + qCInfo(WindowMainStartupShortcutsLog) << "Update has changed to custom version, disabling auto update"; SettingsCache::instance().setCheckUpdatesOnStartup(Qt::Unchecked); } else { int channel = 0; @@ -952,8 +951,7 @@ void MainWindow::startupConfigCheck() channel = 1; } if (SettingsCache::instance().getUpdateReleaseChannelIndex() != channel) { - qCInfo(WindowMainStartupShortcutsLog) - << "Update has changed beta state, updating release channel."; + qCInfo(WindowMainStartupShortcutsLog) << "Update has changed beta state, updating release channel."; SettingsCache::instance().setUpdateReleaseChannelIndex(channel); } }