Whitespace
authorManuel Nickschas <sputnick@quassel-irc.org>
Sun, 17 Aug 2008 20:06:24 +0000 (22:06 +0200)
committerManuel Nickschas <sputnick@quassel-irc.org>
Sun, 17 Aug 2008 22:05:17 +0000 (00:05 +0200)
src/common/syncableobject.cpp
src/common/syncableobject.h

index ebe6ca0..248ccc9 100644 (file)
@@ -44,7 +44,7 @@ SyncableObject::SyncableObject(const SyncableObject &other, QObject *parent)
 SyncableObject &SyncableObject::operator=(const SyncableObject &other) {
   if(this == &other)
     return *this;
 SyncableObject &SyncableObject::operator=(const SyncableObject &other) {
   if(this == &other)
     return *this;
-  
+
   _initialized = other._initialized;
   _allowClientUpdates = other._allowClientUpdates;
   return *this;
   _initialized = other._initialized;
   _allowClientUpdates = other._allowClientUpdates;
   return *this;
@@ -110,7 +110,7 @@ void SyncableObject::fromVariantMap(const QVariantMap &properties) {
       iterator++;
       continue;
     }
       iterator++;
       continue;
     }
-    
+
     int propertyIndex = meta->indexOfProperty(propName.toAscii());
 
     if(propertyIndex == -1 || !meta->property(propertyIndex).isWritable())
     int propertyIndex = meta->indexOfProperty(propName.toAscii());
 
     if(propertyIndex == -1 || !meta->property(propertyIndex).isWritable())
index c746d83..482470a 100644 (file)
@@ -45,7 +45,7 @@ public:
    *  \return The object's state in a QVariantMap
    */
   virtual QVariantMap toVariantMap();
    *  \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.
    */
   //! 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);
 
 private:
   bool setInitValue(const QString &property, const QVariant &value);
-  
+
   bool _initialized;
   bool _allowClientUpdates;
 
   bool _initialized;
   bool _allowClientUpdates;