From 0b6fe99dce6a20245721a0d826925e1186dc4d04 Mon Sep 17 00:00:00 2001 From: Marcus Eggenberger Date: Sat, 1 Mar 2008 23:05:30 +0000 Subject: [PATCH 1/1] Fixed newly introduced renaming bug --- src/common/signalproxy.cpp | 2 +- version.inc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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; -- 2.20.1