X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fsyncableobject.cpp;h=f43a155cf1883cda1d5fb7aebffeb0944e853f06;hb=2c8434f74c68194d56f2084f637419123e61d18b;hp=2c42ea40c1da6d46bad7c7cd182a2e3c5215e0bc;hpb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f;p=quassel.git diff --git a/src/common/syncableobject.cpp b/src/common/syncableobject.cpp index 2c42ea40..f43a155c 100644 --- a/src/common/syncableobject.cpp +++ b/src/common/syncableobject.cpp @@ -28,17 +28,13 @@ #include "util.h" SyncableObject::SyncableObject(QObject *parent) - : QObject(parent), - _initialized(false), - _allowClientUpdates(false) + : QObject(parent) { } SyncableObject::SyncableObject(const QString &objectName, QObject *parent) - : QObject(parent), - _initialized(false), - _allowClientUpdates(false) + : QObject(parent) { setObjectName(objectName); }