From: martin sandsmark Date: Tue, 19 Feb 2013 22:25:34 +0000 (+0100) Subject: fix the misplaced & in the private stuff as well X-Git-Tag: 0.9-beta1~17^2 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=refs%2Fpull%2F1%2Fhead fix the misplaced & in the private stuff as well --- diff --git a/src/core/coreuserinputhandler.h b/src/core/coreuserinputhandler.h index 1d84d4b4..e9d732a8 100644 --- a/src/core/coreuserinputhandler.h +++ b/src/core/coreuserinputhandler.h @@ -83,7 +83,7 @@ protected: void timerEvent(QTimerEvent *event); private: - void doMode(const BufferInfo& bufferInfo, const QChar& addOrRemove, const QChar& mode, const QString &nickList); + void doMode(const BufferInfo& bufferInfo, const QChar &addOrRemove, const QChar &mode, const QString &nickList); void banOrUnban(const BufferInfo &bufferInfo, const QString &text, bool ban); void putPrivmsg(const QByteArray &target, const QByteArray &message, Cipher *cipher = 0); int lastParamOverrun(const QString &cmd, const QList ¶ms);