diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-04-26 11:22:35 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-04-26 11:22:35 +0000 |
commit | e4c171740956998fdac81c071aafefcb9dba817e (patch) | |
tree | 14a3cc89e1161a87e32154a4f81be85b502a01ed /src/gui/chat.h | |
parent | c1d360e6f0ae1ff3c15a52fab8a6115841d058bb (diff) | |
download | mana-e4c171740956998fdac81c071aafefcb9dba817e.tar.gz mana-e4c171740956998fdac81c071aafefcb9dba817e.tar.bz2 mana-e4c171740956998fdac81c071aafefcb9dba817e.tar.xz mana-e4c171740956998fdac81c071aafefcb9dba817e.zip |
Corrections to scrolling chat modifications by Usiu.
Diffstat (limited to 'src/gui/chat.h')
-rw-r--r-- | src/gui/chat.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gui/chat.h b/src/gui/chat.h index b41e6947..53891f7d 100644 --- a/src/gui/chat.h +++ b/src/gui/chat.h @@ -28,7 +28,6 @@ #include "../resources/image.h" #include "../net/network.h" #include "window.h" -#include "textbox.h" #include "scrollarea.h" #include <SDL.h> #include <list> @@ -111,9 +110,6 @@ class ChatWindow : public Window, public gcn::ActionListener { */ ~ChatWindow(); - - void addOutput(std::string output); - /* * Adds a line of text to our message list. Parameters: * @@ -203,8 +199,8 @@ class ChatWindow : public Window, public gcn::ActionListener { /** Input box for chat messages */ gcn::TextField *chatInput; - TextBox *textOutput; - ScrollArea *scrollArea; + gcn::TextBox *textOutput; + ScrollArea *scrollArea; }; #endif |