X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fsyncableobject.cpp;h=3a1799e2883a88db5f4bb41a4e979eaf84f8be52;hp=0a142037bfcb645cd152f3ce52a3a018a5b984c7;hb=83662b607de9eb742fe9de4dd9445914a6bd9456;hpb=84cd3561e97167ffb98ecab0fd2b884ba1d13ada diff --git a/src/common/syncableobject.cpp b/src/common/syncableobject.cpp index 0a142037..3a1799e2 100644 --- a/src/common/syncableobject.cpp +++ b/src/common/syncableobject.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 by the Quassel Project * + * Copyright (C) 2005-2015 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -141,7 +141,7 @@ void SyncableObject::fromVariantMap(const QVariantMap &properties) while (iterator != properties.constEnd()) { propName = iterator.key(); if (propName == "objectName") { - iterator++; + ++iterator; continue; } @@ -152,7 +152,7 @@ void SyncableObject::fromVariantMap(const QVariantMap &properties) else setProperty(propName.toLatin1(), iterator.value()); // qDebug() << "<<< SYNC:" << name << iterator.value(); - iterator++; + ++iterator; } }