New xdxf dialog, one which provides methods to add new or change setting of existing...
[mdictionary] / src / mdictionary / backbone / backbone.cpp
index f61266e..36782d6 100644 (file)
@@ -254,8 +254,8 @@ void Backbone::addInternalDictionary(CommonDictInterface* dict, bool active) {
         dict->setHash(++_dictNum); // Hash must be uniqe in every session but not between
         _dicts[dict] = active;
         connect(dict, SIGNAL(settingsChanged()), this, SLOT(dictUpdated()));
-        connect(dict, SIGNAL(notify(Notify::NotifyType,QString)), this,
-            SIGNAL(notify(Notify::NotifyType,QString)));
+        connect(dict, SIGNAL(notify(Notify::NotifyType,QString, QWidget*)), this,
+            SIGNAL(notify(Notify::NotifyType,QString, QWidget*)));
     }
 }
 
@@ -363,6 +363,8 @@ void Backbone::loadPlugins() {
         if(!exists) {
             _plugins.append(plugin);
             plugin->retranslate();
+            connect(plugin, SIGNAL(notify(Notify::NotifyType,QString, QWidget*)),
+                    this, SIGNAL(notify(Notify::NotifyType,QString, QWidget*)));
         }
     }
 }