diff options
author | Alexander Baldeck <alexander@archlinux.org> | 2004-09-29 09:00:15 +0000 |
---|---|---|
committer | Alexander Baldeck <alexander@archlinux.org> | 2004-09-29 09:00:15 +0000 |
commit | 97f97c6449b9da648302563ed62ca3d107c3835a (patch) | |
tree | 27ee0a5d073ea4b615fbf23e3ddac73c05b98b21 /src | |
parent | 55883ed2e95f5d430cfb49f728890cf300c07178 (diff) | |
download | mana-client-97f97c6449b9da648302563ed62ca3d107c3835a.tar.gz mana-client-97f97c6449b9da648302563ed62ca3d107c3835a.tar.bz2 mana-client-97f97c6449b9da648302563ed62ca3d107c3835a.tar.xz mana-client-97f97c6449b9da648302563ed62ca3d107c3835a.zip |
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/chat.cpp | 2 | ||||
-rw-r--r-- | src/gui/chat.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 6c17942d..b308bed4 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -101,6 +101,8 @@ void Chat::chat_log(string line, int own, ALFONT_FONT * font) { chatlog.push_front(tmp); } +/** function overload -> calls original chat_log() + after processing the packet */ void Chat::chat_log(CHATSKILL action, ALFONT_FONT * font) { chat_log(const_msg(action), BY_SERVER, font); } diff --git a/src/gui/chat.h b/src/gui/chat.h index 76de1f95..5280ff49 100644 --- a/src/gui/chat.h +++ b/src/gui/chat.h @@ -120,8 +120,7 @@ class Chat { void chat_dlgrsize(int); void chat_log(string, int, ALFONT_FONT *); - void chat_log(CHATSKILL, ALFONT_FONT *); // function overload -> calls original chat_log() - // after processing the packet + void chat_log(CHATSKILL, ALFONT_FONT *); void chat_draw(BITMAP *, int, ALFONT_FONT *); char * chat_send(string, string); |