diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-22 16:26:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-22 16:26:52 +0300 |
commit | 5fc6d9e0f9637e3aaa71972478bee9febbe78ca7 (patch) | |
tree | 0b65e519506388e0f4c225ab585b85c84aa03a55 /src/gui/windows/inventorywindow.cpp | |
parent | 4e7a7c79f41a5aa509fa639f0d3e972ab7db6b06 (diff) | |
download | plus-5fc6d9e0f9637e3aaa71972478bee9febbe78ca7.tar.gz plus-5fc6d9e0f9637e3aaa71972478bee9febbe78ca7.tar.bz2 plus-5fc6d9e0f9637e3aaa71972478bee9febbe78ca7.tar.xz plus-5fc6d9e0f9637e3aaa71972478bee9febbe78ca7.zip |
Move listmodel into gui/modesl directory.
Diffstat (limited to 'src/gui/windows/inventorywindow.cpp')
-rw-r--r-- | src/gui/windows/inventorywindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windows/inventorywindow.cpp b/src/gui/windows/inventorywindow.cpp index 0b0e6c6de..be1487566 100644 --- a/src/gui/windows/inventorywindow.cpp +++ b/src/gui/windows/inventorywindow.cpp @@ -36,7 +36,7 @@ #include "gui/gui.h" #include "gui/viewport.h" -#include "gui/base/listmodel.hpp" +#include "gui/models/listmodel.h" #include "gui/popups/textpopup.h" @@ -81,7 +81,7 @@ static const char *const SORT_NAME_INVENTORY[6] = N_("by type") }; -class SortListModelInv final : public gcn::ListModel +class SortListModelInv final : public ListModel { public: ~SortListModelInv() |