First check-in of the Qtopia build system. See qtopia-build/README.
[quassel.git] / src / common / ircuser.cpp
index dd60aa9..be5f49a 100644 (file)
@@ -76,7 +76,8 @@ void IrcUser::setChannelmode(const QString &channel, const QSet<QString> &channe
 
 QSet<QString> IrcUser::channelmode(const QString &channel) const {
   if(channelmodes_.contains(channel))
-    throw NoSuchChannelException();
+    //throw NoSuchChannelException();
+    Q_ASSERT(false); // FIXME: exception disabled for qtopia testing
   else
     return QSet<QString>();
 }