Make fields private

This commit is contained in:
RickyRister 2025-12-04 03:37:22 -08:00
parent a799cd097a
commit 09ab3bbb8f

View file

@ -19,12 +19,13 @@ class DeckPreviewDeckTagsDisplayWidget : public QWidget
{ {
Q_OBJECT Q_OBJECT
DeckList *deckList;
FlowWidget *flowWidget;
public: public:
explicit DeckPreviewDeckTagsDisplayWidget(QWidget *_parent, DeckList *_deckList); explicit DeckPreviewDeckTagsDisplayWidget(QWidget *_parent, DeckList *_deckList);
void setDeckList(DeckList *_deckList); void setDeckList(DeckList *_deckList);
void refreshTags(); void refreshTags();
DeckList *deckList;
FlowWidget *flowWidget;
public slots: public slots:
void openTagEditDlg(); void openTagEditDlg();