From: Marcus Eggenberger Date: Sat, 1 Mar 2008 23:05:30 +0000 (+0000) Subject: Fixed newly introduced renaming bug X-Git-Tag: 0.2.0-alpha3~32 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=0b6fe99dce6a20245721a0d826925e1186dc4d04;hp=56607f81246f04db3a0e71c9a8757d7f75d6cfcf Fixed newly introduced renaming bug --- diff --git a/src/common/signalproxy.cpp b/src/common/signalproxy.cpp index 794e878a..e7c4644b 100644 --- a/src/common/signalproxy.cpp +++ b/src/common/signalproxy.cpp @@ -311,7 +311,7 @@ void SignalProxy::removePeerBySender() { void SignalProxy::objectRenamed(const QString &newname, const QString &oldname) { const QMetaObject *meta = sender()->metaObject(); const QByteArray className(meta->className()); - objectRenamed(className, oldname, newname); + objectRenamed(className, newname, oldname); if(proxyMode() == Client) return; diff --git a/version.inc b/version.inc index 116c53b6..d9fdf791 100644 --- a/version.inc +++ b/version.inc @@ -4,8 +4,8 @@ { using namespace Global; quasselVersion = "0.2.0-alpha3-pre"; - quasselDate = "2008-03-01"; - quasselBuild = 608; + quasselDate = "2008-03-02"; + quasselBuild = 609; //! Minimum client build number the core needs clientBuildNeeded = 605;