summaryrefslogtreecommitdiff
path: root/src/gui/inventory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/inventory.cpp')
-rw-r--r--src/gui/inventory.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/inventory.cpp b/src/gui/inventory.cpp
index 7bf5971f..d6851347 100644
--- a/src/gui/inventory.cpp
+++ b/src/gui/inventory.cpp
@@ -26,6 +26,7 @@
#include "../resources/resourcemanager.h"
#include "../resources/image.h"
#include "button.h"
+#include "scrollarea.h"
#include "../being.h"
#include "../engine.h"
#include "item_amount.h"
@@ -43,7 +44,7 @@ InventoryWindow::InventoryWindow():
items = new ItemContainer();
items->setPosition(2, 2);
- invenScroll = new gcn::ScrollArea(items);
+ invenScroll = new ScrollArea(items);
invenScroll->setPosition(4, 4);
useButton->setEventId("use");