X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fsyncableobject.cpp;fp=src%2Fcommon%2Fsyncableobject.cpp;h=f43a155cf1883cda1d5fb7aebffeb0944e853f06;hp=2c42ea40c1da6d46bad7c7cd182a2e3c5215e0bc;hb=158443f71d48215eea8b47b836b61afd77654b78;hpb=3a3e844f9fcfd12235a0086af75ecd503b621ef4 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); }