summaryrefslogtreecommitdiff
path: root/src/gui/chat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/chat.h')
-rw-r--r--src/gui/chat.h8
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