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/pluginlistproxy.h | |
| parent | e78f46cc9ec440a04e8421d150d114db2ca6810d (diff) | |
Add `isMasterFlagged` `isLight` `isLightFlagged`
Note: The behavior of isMaster has been changed to match isLightFlagged
Diffstat (limited to 'src/pluginlistproxy.h')
| -rw-r--r-- | src/pluginlistproxy.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pluginlistproxy.h b/src/pluginlistproxy.h index e421b6ee..fc883882 100644 --- a/src/pluginlistproxy.h +++ b/src/pluginlistproxy.h @@ -22,6 +22,9 @@ public: int loadOrder(const QString& name) const override; void setLoadOrder(const QStringList& pluginList) override; bool isMaster(const QString& name) const override; + bool isMasterFlagged(const QString& name) const override; + bool isLight(const QString& name) const override; + bool isLightFlagged(const QString& name) const override; QStringList masters(const QString& name) const override; QString origin(const QString& name) const override; bool onRefreshed(const std::function<void()>& callback) override; |
