summaryrefslogtreecommitdiff
path: root/src/net/chathandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/chathandler.cpp')
-rw-r--r--src/net/chathandler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/chathandler.cpp b/src/net/chathandler.cpp
index 076be056..3efe3174 100644
--- a/src/net/chathandler.cpp
+++ b/src/net/chathandler.cpp
@@ -119,7 +119,7 @@ void ChatHandler::handleMessage(MessageIn &msg)
chatWindow->chatLog("Error joining channel", BY_SERVER);
}
break;
-
+
case CPMSG_LIST_CHANNELS_RESPONSE:
chatWindow->chatLog("Listing Channels", BY_SERVER);
while(msg.getUnreadLength())
@@ -141,10 +141,10 @@ void ChatHandler::handleMessage(MessageIn &msg)
channelId = msg.readShort();
userNick = msg.readString();
chatMsg = msg.readString();
-
+
chatWindow->sendToChannel(channelId, userNick, chatMsg);
break;
-
+
case CPMSG_QUIT_CHANNEL_RESPONSE:
if(msg.readByte() == ERRMSG_OK)
{