summaryrefslogtreecommitdiff
path: root/src/gui/npc_text.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/npc_text.cpp')
-rw-r--r--src/gui/npc_text.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/npc_text.cpp b/src/gui/npc_text.cpp
index 38c29688..dc70927c 100644
--- a/src/gui/npc_text.cpp
+++ b/src/gui/npc_text.cpp
@@ -24,12 +24,13 @@
#include "npc_text.h"
#include "scrollarea.h"
#include "button.h"
+#include "textbox.h"
#include "../game.h"
NpcTextDialog::NpcTextDialog(gcn::Container *parent):
Window(parent, "NPC")
{
- textBox = new gcn::TextBox();
+ textBox = new TextBox();
textBox->setEditable(false);
scrollArea = new ScrollArea(textBox);
okButton = new Button("OK");