From 99fb3c8e58b8c23132379bab8e08f5bd270d972e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Tue, 30 Sep 2025 11:30:54 +0200 Subject: [PATCH] Lint some ingroup definitions. Took 10 minutes Took 2 seconds --- cockatrice/src/deck/deck_list_model.h | 4 ++-- cockatrice/src/dialogs/dlg_connect.h | 2 +- cockatrice/src/dialogs/dlg_register.h | 2 +- cockatrice/src/filters/filter_card.h | 2 +- .../src/tabs/visual_deck_storage/tab_deck_storage_visual.h | 2 +- common/abstract_deck_list_card_node.h | 2 +- common/abstract_deck_list_node.h | 4 ++-- common/deck_list.h | 4 ++-- common/deck_list_card_node.h | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/cockatrice/src/deck/deck_list_model.h b/cockatrice/src/deck/deck_list_model.h index 464cf2b84..28d95a632 100644 --- a/cockatrice/src/deck/deck_list_model.h +++ b/cockatrice/src/deck/deck_list_model.h @@ -26,7 +26,7 @@ enum DeckListModelGroupCriteria /** * @class DecklistModelCardNode -* @ingroup DeckModels + * @ingroup DeckModels * @brief Adapter node that wraps a DecklistCardNode for use in the DeckListModel tree. * * This class forwards all property accessors (name, number, provider ID, set info, etc.) @@ -106,7 +106,7 @@ public: /** * @class DeckListModel -* @ingroup DeckModels + * @ingroup DeckModels * @brief Qt model representing a decklist for use in views (tree/table). * * DeckListModel is a QAbstractItemModel that exposes the structure of a deck diff --git a/cockatrice/src/dialogs/dlg_connect.h b/cockatrice/src/dialogs/dlg_connect.h index a2fdc5d3f..89d7a6943 100644 --- a/cockatrice/src/dialogs/dlg_connect.h +++ b/cockatrice/src/dialogs/dlg_connect.h @@ -1,6 +1,6 @@ /** * @file dlg_connect.h -* @ingroup NetworkDialogs + * @ingroup NetworkDialogs * @brief TODO: Document this. */ diff --git a/cockatrice/src/dialogs/dlg_register.h b/cockatrice/src/dialogs/dlg_register.h index c3645274b..89bb7930f 100644 --- a/cockatrice/src/dialogs/dlg_register.h +++ b/cockatrice/src/dialogs/dlg_register.h @@ -1,6 +1,6 @@ /** * @file dlg_register.h -* @ingroup NetworkDialogs + * @ingroup NetworkDialogs * @brief TODO: Document this. */ diff --git a/cockatrice/src/filters/filter_card.h b/cockatrice/src/filters/filter_card.h index 62ce1b017..86cb0e196 100644 --- a/cockatrice/src/filters/filter_card.h +++ b/cockatrice/src/filters/filter_card.h @@ -52,7 +52,7 @@ private: enum Attr a; public: - CardFilter(QString &term, Type type, Attr attr) : trm(term), t(type), a(attr) {}; + CardFilter(QString &term, Type type, Attr attr) : trm(term), t(type), a(attr){}; Type type() const { diff --git a/cockatrice/src/tabs/visual_deck_storage/tab_deck_storage_visual.h b/cockatrice/src/tabs/visual_deck_storage/tab_deck_storage_visual.h index d2fe86dab..f26bce863 100644 --- a/cockatrice/src/tabs/visual_deck_storage/tab_deck_storage_visual.h +++ b/cockatrice/src/tabs/visual_deck_storage/tab_deck_storage_visual.h @@ -27,7 +27,7 @@ class TabDeckStorageVisual final : public Tab Q_OBJECT public: explicit TabDeckStorageVisual(TabSupervisor *_tabSupervisor); - void retranslateUi() override {}; + void retranslateUi() override{}; [[nodiscard]] QString getTabText() const override { return tr("Visual Deck Storage"); diff --git a/common/abstract_deck_list_card_node.h b/common/abstract_deck_list_card_node.h index 04c62218f..19bebf5f9 100644 --- a/common/abstract_deck_list_card_node.h +++ b/common/abstract_deck_list_card_node.h @@ -15,7 +15,7 @@ /** * @class AbstractDecklistCardNode -* @ingroup DeckModels + * @ingroup DeckModels * @brief Abstract base class for all deck list nodes that represent * actual card entries. * diff --git a/common/abstract_deck_list_node.h b/common/abstract_deck_list_node.h index ca16f869d..3a82cfab9 100644 --- a/common/abstract_deck_list_node.h +++ b/common/abstract_deck_list_node.h @@ -22,7 +22,7 @@ /** * @enum DeckSortMethod -* @ingroup DeckModels + * @ingroup DeckModels * @brief Defines the different sort strategies a node may use * to order its children. * @@ -44,7 +44,7 @@ class InnerDecklistNode; /** * @class AbstractDecklistNode -* @ingroup DeckModels + * @ingroup DeckModels * @brief Base class for all nodes in the deck list tree. * * This class defines the common interface for every node in the diff --git a/common/deck_list.h b/common/deck_list.h index bc6e062f8..2a70ea4b1 100644 --- a/common/deck_list.h +++ b/common/deck_list.h @@ -28,7 +28,7 @@ class InnerDecklistNode; /** * @class SideboardPlan -* @ingroup Decks + * @ingroup Decks * @brief Represents a predefined sideboarding strategy for a deck. * * Sideboard plans store a named list of card movements that should be applied @@ -89,7 +89,7 @@ public: /** * @class DeckList -* @ingroup Decks + * @ingroup Decks * @brief Represents a complete deck, including metadata, zones, cards, * and sideboard plans. * diff --git a/common/deck_list_card_node.h b/common/deck_list_card_node.h index a0645a10c..84a396daf 100644 --- a/common/deck_list_card_node.h +++ b/common/deck_list_card_node.h @@ -17,7 +17,7 @@ /** * @class DecklistCardNode -* @ingroup DeckModels + * @ingroup DeckModels * @brief Concrete node type representing an actual card entry in the deck. * * This class extends AbstractDecklistCardNode to hold all information