IrcUser objects yield existance corretly now if they leave our scope (we no longer...
authorMarcus Eggenberger <egs@quassel-irc.org>
Fri, 23 May 2008 15:25:57 +0000 (15:25 +0000)
committerMarcus Eggenberger <egs@quassel-irc.org>
Fri, 23 May 2008 15:25:57 +0000 (15:25 +0000)
src/common/ircuser.cpp
version.inc

index eee29a8..22df0c9 100644 (file)
@@ -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();
   }
 }
index b4c1722..9ac143e 100644 (file)
@@ -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;