diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2006-01-03 16:14:06 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2006-01-03 16:14:06 +0000 |
commit | 08310d2bad4f7d2f00ef506630a350bff2f4a951 (patch) | |
tree | 2826f4d9796178f785c6e6f2f6aa2e32609c9394 /src/gui/chat.h | |
parent | 8cbb88a3317386ccccfed5cee02050c731bf26d5 (diff) | |
download | mana-08310d2bad4f7d2f00ef506630a350bff2f4a951.tar.gz mana-08310d2bad4f7d2f00ef506630a350bff2f4a951.tar.bz2 mana-08310d2bad4f7d2f00ef506630a350bff2f4a951.tar.xz mana-08310d2bad4f7d2f00ef506630a350bff2f4a951.zip |
Really disabled /commands and added proper message when logging in and banned.
Diffstat (limited to 'src/gui/chat.h')
-rw-r--r-- | src/gui/chat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/chat.h b/src/gui/chat.h index a4547d86..80189665 100644 --- a/src/gui/chat.h +++ b/src/gui/chat.h @@ -130,12 +130,12 @@ class ChatWindow : public Window, public gcn::ActionListener, * @param line Text message. * @parem own Type of message (usually the owner-type). */ - void chat_log(std::string line, int own); + void chatLog(std::string line, int own); /* * Calls original chat_log() after processing the packet. */ - void chat_log(CHATSKILL); + void chatLog(CHATSKILL); /** * Performs action. @@ -177,7 +177,7 @@ class ChatWindow : public Window, public gcn::ActionListener, * chatlog.chat_send("Zaeiru", "Hello to all users on the screen!"); */ void - chat_send(std::string nick, std::string msg); + chatSend(std::string nick, std::string msg); /** Called when key is pressed */ void keyPress(const gcn::Key& key); |