move method

This commit is contained in:
RickyRister 2025-12-30 22:40:52 -08:00
parent 86371ce837
commit 27e3fd5a75

View file

@ -217,7 +217,12 @@ public slots:
*/
void rebuildTree();
public slots:
/**
* @brief Sets the criteria used to group cards in the model.
* @param newCriteria The new grouping criteria.
*/
void setActiveGroupCriteria(DeckListModelGroupCriteria::Type newCriteria);
void setActiveFormat(const QString &_format);
signals:
@ -351,12 +356,6 @@ public:
*/
[[nodiscard]] QList<QString> getZones() const;
/**
* @brief Sets the criteria used to group cards in the model.
* @param newCriteria The new grouping criteria.
*/
void setActiveGroupCriteria(DeckListModelGroupCriteria::Type newCriteria);
private:
DeckList *deckList; /**< Pointer to the deck loader providing the underlying data. */
InnerDecklistNode *root; /**< Root node of the model tree. */