summaryrefslogtreecommitdiff
path: root/src/gui/chat.h
diff options
context:
space:
mode:
authorEugenio Favalli <elvenprogrammer@gmail.com>2006-01-03 16:14:06 +0000
committerEugenio Favalli <elvenprogrammer@gmail.com>2006-01-03 16:14:06 +0000
commit08310d2bad4f7d2f00ef506630a350bff2f4a951 (patch)
tree2826f4d9796178f785c6e6f2f6aa2e32609c9394 /src/gui/chat.h
parent8cbb88a3317386ccccfed5cee02050c731bf26d5 (diff)
downloadmana-client-08310d2bad4f7d2f00ef506630a350bff2f4a951.tar.gz
mana-client-08310d2bad4f7d2f00ef506630a350bff2f4a951.tar.bz2
mana-client-08310d2bad4f7d2f00ef506630a350bff2f4a951.tar.xz
mana-client-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.h6
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);