From: Marcus Eggenberger Date: Tue, 29 Jan 2008 15:05:41 +0000 (+0000) Subject: removed yet another stupid debug condition (this time from the client) X-Git-Tag: 0.2.0-alpha1~174 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=25d9ab403582dc24fffe7d4d38e92754898f7384 removed yet another stupid debug condition (this time from the client) --- diff --git a/src/client/networkmodel.cpp b/src/client/networkmodel.cpp index 12e51e5f..04ade524 100644 --- a/src/client/networkmodel.cpp +++ b/src/client/networkmodel.cpp @@ -228,7 +228,7 @@ void BufferItem::removeUserFromCategory(IrcUser *ircUser) { } - if(!success || success) { + if(!success) { qDebug() << "==== Childlist for Item:" << this << id() << bufferName() << "===="; for(int i = 0; i < childCount(); i++) { categoryItem = qobject_cast(child(i)); diff --git a/version.inc b/version.inc index 27244a86..57bfb3ed 100644 --- a/version.inc +++ b/version.inc @@ -5,7 +5,7 @@ quasselVersion = "0.2.0-pre"; quasselDate = "2008-01-29"; - quasselBuild = 405; + quasselBuild = 406; //! Minimum client build number the core needs clientBuildNeeded = 358;