summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircmessageparser.cpp
authorwazlaf <wazlaf>2002-09-30 13:43:36 (UTC)
committer wazlaf <wazlaf>2002-09-30 13:43:36 (UTC)
commit5db3af80f392f8f063f53cbbad67bbe7c5c6eb6d (patch) (side-by-side diff)
tree12d8e59152c434e0774f067d5b0163578d603daf /noncore/net/opieirc/ircmessageparser.cpp
parentb753c264b7acd26aba9f5a73c1fa0a7deb0b73a3 (diff)
downloadopie-5db3af80f392f8f063f53cbbad67bbe7c5c6eb6d.zip
opie-5db3af80f392f8f063f53cbbad67bbe7c5c6eb6d.tar.gz
opie-5db3af80f392f8f063f53cbbad67bbe7c5c6eb6d.tar.bz2
history functionality, tabs switch colors, extended settings dialog
Diffstat (limited to 'noncore/net/opieirc/ircmessageparser.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opieirc/ircmessageparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/net/opieirc/ircmessageparser.cpp b/noncore/net/opieirc/ircmessageparser.cpp
index a95c64e..e8d3b1a 100644
--- a/noncore/net/opieirc/ircmessageparser.cpp
+++ b/noncore/net/opieirc/ircmessageparser.cpp
@@ -508,14 +508,14 @@ void IRCMessageParser::parseNumericalTopic(IRCMessage *message) {
IRCChannel *channel = m_session->getChannel(message->param(1).lower());
if (channel) {
IRCOutput output(OUTPUT_TOPIC, tr("Topic for channel " + channel->channelname() + " is \"" + message->param(2) + "\""));
output.addParam(channel);
emit outputReady(output);
} else {
IRCOutput output(OUTPUT_TOPIC, tr("Topic for channel " + message->param(1) + " is \"" + message->param(2) + "\""));
output.addParam(0);
emit outputReady(output);
}
}
-void IRCMessageParser::parseNumericalTopicWhoTime(IRCMessage *message) {
+void IRCMessageParser::parseNumericalTopicWhoTime(IRCMessage *) {
}