summaryrefslogtreecommitdiff
path: root/src/gui/widgets/listbox.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-02-22 16:26:52 +0300
committerAndrei Karas <akaras@inbox.ru>2014-02-22 16:26:52 +0300
commit5fc6d9e0f9637e3aaa71972478bee9febbe78ca7 (patch)
tree0b65e519506388e0f4c225ab585b85c84aa03a55 /src/gui/widgets/listbox.h
parent4e7a7c79f41a5aa509fa639f0d3e972ab7db6b06 (diff)
downloadmv-5fc6d9e0f9637e3aaa71972478bee9febbe78ca7.tar.gz
mv-5fc6d9e0f9637e3aaa71972478bee9febbe78ca7.tar.bz2
mv-5fc6d9e0f9637e3aaa71972478bee9febbe78ca7.tar.xz
mv-5fc6d9e0f9637e3aaa71972478bee9febbe78ca7.zip
Move listmodel into gui/modesl directory.
Diffstat (limited to 'src/gui/widgets/listbox.h')
-rw-r--r--src/gui/widgets/listbox.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/gui/widgets/listbox.h b/src/gui/widgets/listbox.h
index 61e1596f7..0c3a62609 100644
--- a/src/gui/widgets/listbox.h
+++ b/src/gui/widgets/listbox.h
@@ -33,13 +33,10 @@
class Skin;
class KeyEvent;
+class ListModel;
class MouseEvent;
class Widget2;
-namespace gcn
-{
- class ListModel;
-}
/**
* A list box, meant to be used inside a scroll area. Same as the Guichan list
* box except this one doesn't have a background, instead completely relying
@@ -54,7 +51,7 @@ class ListBox : public gcn::ListBox
* Constructor.
*/
ListBox(const Widget2 *const widget,
- gcn::ListModel *const listModel,
+ ListModel *const listModel,
const std::string &skin);
A_DELETE_COPY(ListBox)