From: Marcus Eggenberger Date: Sun, 2 Mar 2008 21:15:51 +0000 (+0000) Subject: fixed case sensitivity issue with channel sync X-Git-Tag: 0.2.0-alpha3~28 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=ffe617fad454be8007a526c476a835322ce93300 fixed case sensitivity issue with channel sync --- diff --git a/src/common/network.cpp b/src/common/network.cpp index a3b97729..db15d253 100644 --- a/src/common/network.cpp +++ b/src/common/network.cpp @@ -639,7 +639,13 @@ QStringList Network::initIrcUsers() const { } QStringList Network::initIrcChannels() const { - return _ircChannels.keys(); + QStringList channels; + QHash::const_iterator iter = _ircChannels.constBegin(); + while(iter != _ircChannels.constEnd()) { + channels << iter.value()->name(); + iter++; + } + return channels; } void Network::initSetSupports(const QVariantMap &supports) { diff --git a/version.inc b/version.inc index d664fd7e..42c13530 100644 --- a/version.inc +++ b/version.inc @@ -5,14 +5,14 @@ quasselVersion = "0.2.0-alpha3-pre"; quasselDate = "2008-03-02"; - quasselBuild = 612; + quasselBuild = 613; //! Minimum client build number the core needs - clientBuildNeeded = 612; + clientBuildNeeded = 613; clientVersionNeeded = quasselVersion; //! Minimum core build number the client needs - coreBuildNeeded = 612; + coreBuildNeeded = 613; coreVersionNeeded = quasselVersion; }