Lint some ingroup definitions.

Took 10 minutes


Took 2 seconds
This commit is contained in:
Lukas Brübach 2025-09-30 11:30:54 +02:00
parent 12b4d2e1c5
commit 99fb3c8e58
9 changed files with 12 additions and 12 deletions

View file

@ -26,7 +26,7 @@ enum DeckListModelGroupCriteria
/** /**
* @class DecklistModelCardNode * @class DecklistModelCardNode
* @ingroup DeckModels * @ingroup DeckModels
* @brief Adapter node that wraps a DecklistCardNode for use in the DeckListModel tree. * @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.) * This class forwards all property accessors (name, number, provider ID, set info, etc.)
@ -106,7 +106,7 @@ public:
/** /**
* @class DeckListModel * @class DeckListModel
* @ingroup DeckModels * @ingroup DeckModels
* @brief Qt model representing a decklist for use in views (tree/table). * @brief Qt model representing a decklist for use in views (tree/table).
* *
* DeckListModel is a QAbstractItemModel that exposes the structure of a deck * DeckListModel is a QAbstractItemModel that exposes the structure of a deck

View file

@ -1,6 +1,6 @@
/** /**
* @file dlg_connect.h * @file dlg_connect.h
* @ingroup NetworkDialogs * @ingroup NetworkDialogs
* @brief TODO: Document this. * @brief TODO: Document this.
*/ */

View file

@ -1,6 +1,6 @@
/** /**
* @file dlg_register.h * @file dlg_register.h
* @ingroup NetworkDialogs * @ingroup NetworkDialogs
* @brief TODO: Document this. * @brief TODO: Document this.
*/ */

View file

@ -52,7 +52,7 @@ private:
enum Attr a; enum Attr a;
public: 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 Type type() const
{ {

View file

@ -27,7 +27,7 @@ class TabDeckStorageVisual final : public Tab
Q_OBJECT Q_OBJECT
public: public:
explicit TabDeckStorageVisual(TabSupervisor *_tabSupervisor); explicit TabDeckStorageVisual(TabSupervisor *_tabSupervisor);
void retranslateUi() override {}; void retranslateUi() override{};
[[nodiscard]] QString getTabText() const override [[nodiscard]] QString getTabText() const override
{ {
return tr("Visual Deck Storage"); return tr("Visual Deck Storage");

View file

@ -15,7 +15,7 @@
/** /**
* @class AbstractDecklistCardNode * @class AbstractDecklistCardNode
* @ingroup DeckModels * @ingroup DeckModels
* @brief Abstract base class for all deck list nodes that represent * @brief Abstract base class for all deck list nodes that represent
* actual card entries. * actual card entries.
* *

View file

@ -22,7 +22,7 @@
/** /**
* @enum DeckSortMethod * @enum DeckSortMethod
* @ingroup DeckModels * @ingroup DeckModels
* @brief Defines the different sort strategies a node may use * @brief Defines the different sort strategies a node may use
* to order its children. * to order its children.
* *
@ -44,7 +44,7 @@ class InnerDecklistNode;
/** /**
* @class AbstractDecklistNode * @class AbstractDecklistNode
* @ingroup DeckModels * @ingroup DeckModels
* @brief Base class for all nodes in the deck list tree. * @brief Base class for all nodes in the deck list tree.
* *
* This class defines the common interface for every node in the * This class defines the common interface for every node in the

View file

@ -28,7 +28,7 @@ class InnerDecklistNode;
/** /**
* @class SideboardPlan * @class SideboardPlan
* @ingroup Decks * @ingroup Decks
* @brief Represents a predefined sideboarding strategy for a deck. * @brief Represents a predefined sideboarding strategy for a deck.
* *
* Sideboard plans store a named list of card movements that should be applied * Sideboard plans store a named list of card movements that should be applied
@ -89,7 +89,7 @@ public:
/** /**
* @class DeckList * @class DeckList
* @ingroup Decks * @ingroup Decks
* @brief Represents a complete deck, including metadata, zones, cards, * @brief Represents a complete deck, including metadata, zones, cards,
* and sideboard plans. * and sideboard plans.
* *

View file

@ -17,7 +17,7 @@
/** /**
* @class DecklistCardNode * @class DecklistCardNode
* @ingroup DeckModels * @ingroup DeckModels
* @brief Concrete node type representing an actual card entry in the deck. * @brief Concrete node type representing an actual card entry in the deck.
* *
* This class extends AbstractDecklistCardNode to hold all information * This class extends AbstractDecklistCardNode to hold all information