mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	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;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user