summaryrefslogtreecommitdiff
path: root/src/net/ea/chathandler.cpp
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2009-04-16 18:55:35 +0200
committerPhilipp Sehmisch <crush@themanaworld.org>2009-04-16 18:55:35 +0200
commit2fb36c5f27e2891bbd9968bdf9bbc7142ff28983 (patch)
tree56dc005cf1fa552f13be2668d8e4547bfaf68815 /src/net/ea/chathandler.cpp
parent126c19c7acd63fcd039ab9449a5d96790ce3cfac (diff)
parent736795a624ae5f04b11fa284cb8a4b14579c1766 (diff)
downloadmana-client-2fb36c5f27e2891bbd9968bdf9bbc7142ff28983.tar.gz
mana-client-2fb36c5f27e2891bbd9968bdf9bbc7142ff28983.tar.bz2
mana-client-2fb36c5f27e2891bbd9968bdf9bbc7142ff28983.tar.xz
mana-client-2fb36c5f27e2891bbd9968bdf9bbc7142ff28983.zip
Merge branch 'master' of git@gitorious.org:tmw/mainline
Diffstat (limited to 'src/net/ea/chathandler.cpp')
-rw-r--r--src/net/ea/chathandler.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/net/ea/chathandler.cpp b/src/net/ea/chathandler.cpp
index 997881f8..626f1048 100644
--- a/src/net/ea/chathandler.cpp
+++ b/src/net/ea/chathandler.cpp
@@ -200,43 +200,43 @@ void ChatHandler::privateMessage(const std::string &recipient,
void ChatHandler::channelList()
{
- // TODO
+ localChatTab->chatLog(_("Channels are not supported!"), BY_SERVER);
}
void ChatHandler::enterChannel(const std::string &channel,
const std::string &password)
{
- // TODO
+ localChatTab->chatLog(_("Channels are not supported!"), BY_SERVER);
}
void ChatHandler::quitChannel(int channelId)
{
- // TODO
+ localChatTab->chatLog(_("Channels are not supported!"), BY_SERVER);
}
void ChatHandler::sendToChannel(int channelId, const std::string &text)
{
- // TODO
+ localChatTab->chatLog(_("Channels are not supported!"), BY_SERVER);
}
void ChatHandler::userList(const std::string &channel)
{
- // TODO
+ localChatTab->chatLog(_("Channels are not supported!"), BY_SERVER);
}
void ChatHandler::setChannelTopic(int channelId, const std::string &text)
{
- // TODO
+ localChatTab->chatLog(_("Channels are not supported!"), BY_SERVER);
}
void ChatHandler::setUserMode(int channelId, const std::string &name, int mode)
{
- // TODO
+ localChatTab->chatLog(_("Channels are not supported!"), BY_SERVER);
}
void ChatHandler::kickUser(int channelId, const std::string &name)
{
- // TODO
+ localChatTab->chatLog(_("Channels are not supported!"), BY_SERVER);
}
} // namespace EAthena