diff options
Diffstat (limited to 'src/libs/client')
-rw-r--r-- | src/libs/client/Store.cpp | 1 | ||||
-rw-r--r-- | src/libs/client/Store.hpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/libs/client/Store.cpp b/src/libs/client/Store.cpp index 1eea354a..53b99f8d 100644 --- a/src/libs/client/Store.cpp +++ b/src/libs/client/Store.cpp @@ -336,6 +336,7 @@ Store::add_plugin(SharedPtr<PluginModel> pm) // FIXME: dupes? merge, like with objects? _plugins[pm->uri()] = pm; + signal_new_plugin(pm); //cerr << "Plugin: " << pm->uri() << ", # plugins: " << _plugins.size() << endl; } diff --git a/src/libs/client/Store.hpp b/src/libs/client/Store.hpp index 443a411f..70f11142 100644 --- a/src/libs/client/Store.hpp +++ b/src/libs/client/Store.hpp @@ -70,6 +70,7 @@ public: const Objects& objects() const { return _objects; } sigc::signal<void, SharedPtr<ObjectModel> > signal_new_object; + sigc::signal<void, SharedPtr<PluginModel> > signal_new_plugin; private: |