X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fsignalproxy.cpp;h=aba57623f868f918bf15b2c1da77ea3c910470cf;hp=904768d5843b7d88a611d9731b454085c976f705;hb=d6b056e936ec441258d291b7a8af7b83f9f53016;hpb=924e2c01204da172a071d34485936b379372e497 diff --git a/src/common/signalproxy.cpp b/src/common/signalproxy.cpp index 904768d5..aba57623 100644 --- a/src/common/signalproxy.cpp +++ b/src/common/signalproxy.cpp @@ -5,7 +5,7 @@ * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -583,7 +583,7 @@ void SignalProxy::handleInitRequest(QIODevice *sender, const QVariantList ¶m QByteArray className(params[0].toByteArray()); QString objectName(params[1].toString()); - + if(!_syncSlave.contains(className)) { qWarning() << "SignalProxy::handleInitRequest() received initRequest for unregistered Class:" << className; @@ -595,7 +595,7 @@ void SignalProxy::handleInitRequest(QIODevice *sender, const QVariantList ¶m << className << objectName; return; } - + QObject *obj = _syncSlave[className][objectName]; QVariantList params_;