mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
Fix mistyped pointer. (#6310)
Took 25 minutes Took 25 seconds Took 22 seconds Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
This commit is contained in:
parent
3d9cae717d
commit
2efcb48b7e
1 changed files with 9 additions and 9 deletions
|
|
@ -51,15 +51,15 @@ public:
|
|||
static const char *TOKENS_SETNAME; ///< Reserved identifier for token-like sets.
|
||||
|
||||
private:
|
||||
QSharedPointer<ICardSetPriorityController> priorityController; ///< Interface to the card set priority controller.
|
||||
QString shortName; ///< Short identifier for the set.
|
||||
QString longName; ///< Full name for the set.
|
||||
unsigned int sortKey; ///< Custom numeric sort key.
|
||||
QDate releaseDate; ///< Release date, may be empty if unknown.
|
||||
QString setType; ///< Type/category label for the set.
|
||||
Priority priority; ///< Priority level for sorting and relevance.
|
||||
bool enabled; ///< Whether the set is active/enabled.
|
||||
bool isknown; ///< Whether the set is considered known.
|
||||
ICardSetPriorityController *priorityController; ///< Interface to the card set priority controller.
|
||||
QString shortName; ///< Short identifier for the set.
|
||||
QString longName; ///< Full name for the set.
|
||||
unsigned int sortKey; ///< Custom numeric sort key.
|
||||
QDate releaseDate; ///< Release date, may be empty if unknown.
|
||||
QString setType; ///< Type/category label for the set.
|
||||
Priority priority; ///< Priority level for sorting and relevance.
|
||||
bool enabled; ///< Whether the set is active/enabled.
|
||||
bool isknown; ///< Whether the set is considered known.
|
||||
|
||||
public:
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue