Stage 3
[quassel.git] / src / plugins / plugin.h
index 826748c..72268f6 100644 (file)
@@ -61,17 +61,20 @@ Q_DECLARE_INTERFACE(CorePluginInterface,
  * the application's settings dialog.
  * This is also used by built-in settings dialogs.
  */
+/*
 class SettingsInterface {
   public:
     virtual ~SettingsInterface() {};
     virtual QString category() = 0;
     virtual QString title() = 0; 
     virtual QWidget *settingsWidget() = 0;
+    virtual void applyChanges() = 0;
 
 };
 
 Q_DECLARE_INTERFACE(SettingsInterface,
                     "eu.quassel.plugins.SettingsInterface/1.0");
+*/
 
 /** Plugins implementing this interface will be provided with the raw text the users enters.
  * The output they generate is in turn treated like generic user input. Note that the order in