diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-10-31 16:08:05 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-11-03 11:41:53 -0500 |
| commit | 356d17b2ea70d9bfdc36d8199e12eb21cd3d4669 (patch) | |
| tree | 983e62821e1f9ebc0c2af578ce5c91c80a48dc91 /src/pluginlist.h | |
| parent | 4c5e3da2334a1d0c474148be8881b46d6ca6d3fa (diff) | |
fixes after rebasing
Diffstat (limited to 'src/pluginlist.h')
| -rw-r--r-- | src/pluginlist.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h index bfadaf4f..27c15056 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -420,12 +420,13 @@ public: int priority(const QString &name) const override;
int loadOrder(const QString &name) const override;
void setLoadOrder(const QStringList &pluginList) override;
+ bool setPriority(const QString& name, int newPriority) override;
bool isMaster(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;
bool onPluginMoved(const std::function<void (const QString &, int, int)> &func) override;
- bool onPluginStateChanged(const std::function<void (const QString &, PluginStates)> &func) override;
+ bool onPluginStateChanged(const std::function<void (const std::map<QString, PluginStates>&)> &func) override;
};
#pragma warning(pop)
|
