diff options
Diffstat (limited to 'src/gui/sell.cpp')
-rw-r--r-- | src/gui/sell.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/sell.cpp b/src/gui/sell.cpp index 4dc210a4..bdf6ec6d 100644 --- a/src/gui/sell.cpp +++ b/src/gui/sell.cpp @@ -25,6 +25,7 @@ #include "button.h" #include "slider.h" #include "scrollarea.h" +#include "listbox.h" #include "../graphic/graphic.h" #include <sstream> @@ -32,7 +33,7 @@ SellDialog::SellDialog(gcn::Container *parent): Window(parent, "Sell") { - itemList = new gcn::ListBox(this); + itemList = new ListBox(this); scrollArea = new ScrollArea(itemList); slider = new Slider(1.0); quantityLabel = new gcn::Label("0"); |