From e17d8b40fdd7e870368d9343913500604b43951b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Thu, 28 Nov 2024 00:03:15 +0100 Subject: [PATCH] Linter behave. --- .../client/ui/widgets/printing_selector/printing_selector.cpp | 2 +- cockatrice/src/dialogs/dlg_settings.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cockatrice/src/client/ui/widgets/printing_selector/printing_selector.cpp b/cockatrice/src/client/ui/widgets/printing_selector/printing_selector.cpp index e64dd002b..feb30f904 100644 --- a/cockatrice/src/client/ui/widgets/printing_selector/printing_selector.cpp +++ b/cockatrice/src/client/ui/widgets/printing_selector/printing_selector.cpp @@ -1,8 +1,8 @@ #include "printing_selector.h" +#include "../../../../settings/cache_settings.h" #include "../../../../utility/card_set_comparator.h" #include "printing_selector_card_display_widget.h" -#include "../../../../settings/cache_settings.h" #include #include diff --git a/cockatrice/src/dialogs/dlg_settings.cpp b/cockatrice/src/dialogs/dlg_settings.cpp index 7e72a5fab..1bac428fe 100644 --- a/cockatrice/src/dialogs/dlg_settings.cpp +++ b/cockatrice/src/dialogs/dlg_settings.cpp @@ -340,11 +340,11 @@ AppearanceSettingsPage::AppearanceSettingsPage() overrideAllCardArtWithPersonalPreferenceCheckBox.setChecked(settings.getOverrideAllCardArtWithPersonalPreference()); connect(&overrideAllCardArtWithPersonalPreferenceCheckBox, &QCheckBox::QT_STATE_CHANGED, &settings, - &SettingsCache::setOverrideAllCardArtWithPersonalPreference); + &SettingsCache::setOverrideAllCardArtWithPersonalPreference); bumpSetsWithCardsInDeckToTopCheckBox.setChecked(settings.getBumpSetsWithCardsInDeckToTop()); connect(&bumpSetsWithCardsInDeckToTopCheckBox, &QCheckBox::QT_STATE_CHANGED, &settings, - &SettingsCache::setBumpSetsWithCardsInDeckToTop); + &SettingsCache::setBumpSetsWithCardsInDeckToTop); cardScalingCheckBox.setChecked(settings.getScaleCards()); connect(&cardScalingCheckBox, &QCheckBox::QT_STATE_CHANGED, &settings, &SettingsCache::setCardScaling);