mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
DolphinQt2: move path signals from PathDialog to Settings
This commit is contained in:
@ -35,8 +35,9 @@ public:
|
||||
|
||||
// GameList
|
||||
QStringList GetPaths() const;
|
||||
void AddPath(const QString& path);
|
||||
void SetPaths(const QStringList& paths);
|
||||
void RemovePath(int i);
|
||||
void RemovePath(const QString& path);
|
||||
QString GetDefaultGame() const;
|
||||
void SetDefaultGame(const QString& path);
|
||||
QString GetDVDRoot() const;
|
||||
@ -107,6 +108,10 @@ public:
|
||||
|
||||
void Save();
|
||||
|
||||
signals:
|
||||
void PathAdded(const QString&);
|
||||
void PathRemoved(const QString&);
|
||||
|
||||
private:
|
||||
Settings();
|
||||
};
|
||||
|
Reference in New Issue
Block a user