Committing a whole bunch of Identity-related stuff that's not actually used yet,
[quassel.git] / src / core / storage.h
index 66d4b20..4a22524 100644 (file)
@@ -33,6 +33,7 @@ class Storage : public QObject {
     Storage() {};
     virtual ~Storage() {};
 
+  public slots:
     /* General */
 
     //! Check if the storage type is available.
@@ -51,7 +52,7 @@ class Storage : public QObject {
      *  \param settings   Hostname, port, username, password, ...
      *  \return True if and only if the storage provider was initialized successfully.
      */
-    virtual bool setup(const QVariantMap &settings = QVariantMap()) { return false; }
+    virtual bool setup(const QVariantMap &settings = QVariantMap()) { Q_UNUSED(settings); return false; }
     
     //! Initialize the storage provider
     /** \param settings   Hostname, port, username, password, ...