diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-11-04 20:57:50 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-11-04 20:57:50 -0500 |
| commit | e6a87a17987de5d8e462634777df31e2cae5c1a6 (patch) | |
| tree | 1d5fa9752f6949b62aa6a8148b07cea7b02d964c /src/pluginlist.h | |
| parent | f7b097e6ba3160b424204c719b615954601f76fe (diff) | |
added IPlugin::registered()
removed useless dummy interfaces because init() isn't called anymore
python plugins currently broken because init() isn't called on them
fixed create instance dialog being shown on startup even if portable instance existed
display a message when the last instance can't be found
fixed instance manager dialog failing to open the portable instance
Diffstat (limited to 'src/pluginlist.h')
| -rw-r--r-- | src/pluginlist.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h index 27c15056..0b49b86f 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -410,25 +410,6 @@ private: bool hasInfo(const ESPInfo& esp, const AdditionalInfo* info) const;
};
-
-class DummyPluginList : public MOBase::IPluginList
-{
-public:
- QStringList pluginNames() const override;
- PluginStates state(const QString &name) const override;
- void setState(const QString &name, PluginStates state) override;
- 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 std::map<QString, PluginStates>&)> &func) override;
-};
-
#pragma warning(pop)
#endif // PLUGINLIST_H
|
