_Almost_ finished the identity dialog (which is still not used and not visible yet...
[quassel.git] / src / common / syncableobject.h
index f89c168..4ce8c91 100644 (file)
@@ -46,7 +46,7 @@ class SyncableObject : public QObject {
     virtual QVariantMap toVariantMap();
 
     //! Initialize the object's state from a given QVariantMap.
-    /** \see toVarianMap() for important information concerning this method.
+    /** \see toVariantMap() for important information concerning this method.
      */
     virtual void fromVariantMap(const QVariantMap &map);
 
@@ -55,9 +55,4 @@ class SyncableObject : public QObject {
 
 };
 
-QDataStream &operator<<(QDataStream &out, SyncableObject object);
-QDataStream &operator>>(QDataStream &in, SyncableObject &object);
-
-Q_DECLARE_METATYPE(SyncableObject);
-
 #endif