X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fsyncableobject.h;h=dfe3887dce2a6a6c1a44c89f6fb374fc93f28521;hp=482470a51ae3d41170031f5706f21bc44e830373;hb=ac21cc48d22f0cf58a98b74754fa94564a8e3f45;hpb=4493458caaa821deb69a0cddf13beb98394977bb diff --git a/src/common/syncableobject.h b/src/common/syncableobject.h index 482470a5..dfe3887d 100644 --- a/src/common/syncableobject.h +++ b/src/common/syncableobject.h @@ -18,8 +18,8 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef _SYNCABLEOBJECT_H_ -#define _SYNCABLEOBJECT_H_ +#ifndef SYNCABLEOBJECT_H +#define SYNCABLEOBJECT_H #include #include @@ -31,6 +31,7 @@ class SyncableObject : public QObject { public: SyncableObject(QObject *parent = 0); + SyncableObject(const QString &objectName, QObject *parent = 0); SyncableObject(const SyncableObject &other, QObject *parent = 0); //! Stores the object's state into a QVariantMap. @@ -61,7 +62,7 @@ public: public slots: virtual void setInitialized(); void requestUpdate(const QVariantMap &properties); - void update(const QVariantMap &properties); + virtual void update(const QVariantMap &properties); protected: void renameObject(const QString &newName);