From cfee0d28ae857b0b089f5383fade8f529c0fa2fe Mon Sep 17 00:00:00 2001 From: Marcus Eggenberger Date: Fri, 23 May 2008 15:25:57 +0000 Subject: [PATCH] IrcUser objects yield existance corretly now if they leave our scope (we no longer share a channel with them) --- src/common/ircuser.cpp | 2 +- version.inc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/ircuser.cpp b/src/common/ircuser.cpp index eee29a8d..22df0c94 100644 --- a/src/common/ircuser.cpp +++ b/src/common/ircuser.cpp @@ -232,7 +232,7 @@ void IrcUser::partChannel(IrcChannel *channel) { disconnect(channel, 0, this, 0); channel->part(this); emit channelParted(channel->name()); - if(_channels.isEmpty() && network()->isMe(this)) + if(_channels.isEmpty() && !network()->isMe(this)) deleteLater(); } } diff --git a/version.inc b/version.inc index b4c17227..9ac143e5 100644 --- a/version.inc +++ b/version.inc @@ -4,8 +4,8 @@ { using namespace Global; quasselVersion = "0.2.0-beta2-pre"; - quasselDate = "2008-05-22"; - quasselBuild = 849; + quasselDate = "2008-05-23"; + quasselBuild = 857; //! Minimum client build number the core needs clientBuildNeeded = 731; -- 2.20.1