diff options
| author | Qudix <17361645+Qudix@users.noreply.github.com> | 2022-02-24 18:34:10 -0600 |
|---|---|---|
| committer | Qudix <17361645+Qudix@users.noreply.github.com> | 2022-02-24 18:34:10 -0600 |
| commit | 5b855f2e19071c542339090d8635ef9efff848ba (patch) | |
| tree | 914dee46eecd94d853cc33b32b4805d144520fd9 /src/pluginlist.h | |
| parent | e78f46cc9ec440a04e8421d150d114db2ca6810d (diff) | |
Add `isMasterFlagged` `isLight` `isLightFlagged`
Note: The behavior of isMaster has been changed to match isLightFlagged
Diffstat (limited to 'src/pluginlist.h')
| -rw-r--r-- | src/pluginlist.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h index af70396e..451db257 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -233,6 +233,7 @@ public: int loadOrder(const QString &name) const;
bool setPriority(const QString& name, int newPriority);
bool isMaster(const QString &name) const;
+ bool isMasterFlagged(const QString& name) const;
bool isLight(const QString &name) const;
bool isLightFlagged(const QString &name) const;
QStringList masters(const QString &name) const;
@@ -320,6 +321,7 @@ private: FILETIME time;
QString originName;
bool isMaster;
+ bool isMasterFlagged;
bool isLight;
bool isLightFlagged;
bool modSelected;
|
