From 1b680d1e84bff6c2e6f64dfbda72cb91efa48125 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Sun, 17 Aug 2008 22:06:24 +0200 Subject: [PATCH] Whitespace --- src/common/syncableobject.cpp | 4 ++-- src/common/syncableobject.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common/syncableobject.cpp b/src/common/syncableobject.cpp index ebe6ca0e..248ccc9f 100644 --- a/src/common/syncableobject.cpp +++ b/src/common/syncableobject.cpp @@ -44,7 +44,7 @@ SyncableObject::SyncableObject(const SyncableObject &other, QObject *parent) SyncableObject &SyncableObject::operator=(const SyncableObject &other) { if(this == &other) return *this; - + _initialized = other._initialized; _allowClientUpdates = other._allowClientUpdates; return *this; @@ -110,7 +110,7 @@ void SyncableObject::fromVariantMap(const QVariantMap &properties) { iterator++; continue; } - + int propertyIndex = meta->indexOfProperty(propName.toAscii()); if(propertyIndex == -1 || !meta->property(propertyIndex).isWritable()) diff --git a/src/common/syncableobject.h b/src/common/syncableobject.h index c746d838..482470a5 100644 --- a/src/common/syncableobject.h +++ b/src/common/syncableobject.h @@ -45,7 +45,7 @@ public: * \return The object's state in a QVariantMap */ virtual QVariantMap toVariantMap(); - + //! Initialize the object's state from a given QVariantMap. /** \see toVariantMap() for important information concerning this method. */ @@ -76,7 +76,7 @@ signals: private: bool setInitValue(const QString &property, const QVariant &value); - + bool _initialized; bool _allowClientUpdates; -- 2.20.1