game_list: Make slots private functions
The new Qt event syntax allows for regular member functions to be used in connect(), so explicitly indicating slots isn't necessary.
This commit is contained in:
parent
7402001787
commit
3bbd35dde9
|
@ -33,18 +33,15 @@ public:
|
|||
void SaveInterfaceLayout();
|
||||
void LoadInterfaceLayout();
|
||||
|
||||
public slots:
|
||||
void AddEntry(const QList<QStandardItem*>& entry_items);
|
||||
|
||||
private slots:
|
||||
void ValidateEntry(const QModelIndex& item);
|
||||
void DonePopulating();
|
||||
|
||||
signals:
|
||||
void GameChosen(QString game_path);
|
||||
void ShouldCancelWorker();
|
||||
|
||||
private:
|
||||
void AddEntry(const QList<QStandardItem*>& entry_items);
|
||||
void ValidateEntry(const QModelIndex& item);
|
||||
void DonePopulating();
|
||||
|
||||
QTreeView* tree_view = nullptr;
|
||||
QStandardItemModel* item_model = nullptr;
|
||||
GameListWorker* current_worker = nullptr;
|
||||
|
|
Reference in New Issue