diff options
| author | Mikaƫl Capelle <capelle.mikael@gmail.com> | 2023-07-09 17:36:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-09 17:36:03 +0200 |
| commit | ef94aee28464039672b277243a0181ae93550d6c (patch) | |
| tree | 0575a68af5f154e9d6d0738edbaefb16a11d6f5c /src/pluginlistproxy.h | |
| parent | 7d6cb8528d20e36a4cee822263865ee2f7f32481 (diff) | |
| parent | 3de050e9c03e553f7ae3f780f6bd080a30ae123e (diff) | |
Merge pull request #1839 from Holt59/ci/initial-gh-action-for-build
Clang-Format + Github Workflow
Diffstat (limited to 'src/pluginlistproxy.h')
| -rw-r--r-- | src/pluginlistproxy.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pluginlistproxy.h b/src/pluginlistproxy.h index 202b8484..63602043 100644 --- a/src/pluginlistproxy.h +++ b/src/pluginlistproxy.h @@ -1,15 +1,14 @@ #ifndef PLUGINLISTPROXY_H #define PLUGINLISTPROXY_H -#include <ipluginlist.h> #include "pluginlist.h" +#include <ipluginlist.h> class OrganizerProxy; class PluginListProxy : public MOBase::IPluginList { public: - PluginListProxy(OrganizerProxy* oproxy, PluginList* pluginlist); virtual ~PluginListProxy(); @@ -25,8 +24,10 @@ public: 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; + 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; bool hasMasterExtension(const QString& name) const override; bool hasLightExtension(const QString& name) const override; @@ -34,7 +35,6 @@ public: bool isLightFlagged(const QString& name) const override; private: - friend class OrganizerProxy; // See OrganizerProxy::connectSignals(). @@ -51,4 +51,4 @@ private: std::vector<boost::signals2::connection> m_Connections; }; -#endif // ORGANIZERPROXY_H +#endif // ORGANIZERPROXY_H |
