diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-02-03 13:07:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-02-03 13:07:57 +0300 |
commit | ca4582756ce9ad0c4f4222da0760bd6ccffc829a (patch) | |
tree | 3d65b06b31aadf18f59bce4e0802945158a52950 /src/gui/buydialog.h | |
parent | ab4a00c231e84267c7d06b2b1bb167593f22d91f (diff) | |
download | plus-ca4582756ce9ad0c4f4222da0760bd6ccffc829a.tar.gz plus-ca4582756ce9ad0c4f4222da0760bd6ccffc829a.tar.bz2 plus-ca4582756ce9ad0c4f4222da0760bd6ccffc829a.tar.xz plus-ca4582756ce9ad0c4f4222da0760bd6ccffc829a.zip |
Fix inventory sorting.
Was broken because conflict with buy dialog sorting.
Diffstat (limited to 'src/gui/buydialog.h')
-rw-r--r-- | src/gui/buydialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/buydialog.h b/src/gui/buydialog.h index 76910f247..9d6bf447c 100644 --- a/src/gui/buydialog.h +++ b/src/gui/buydialog.h @@ -32,7 +32,7 @@ class Button; class DropDown; class ShopItems; class ShopListBox; -class SortListModel; +class SortListModelBuy; class IntTextField; class Label; class ListBox; @@ -147,7 +147,7 @@ class BuyDialog final : public Window, int mAmountItems; int mMaxItems; std::string mNick; - SortListModel *mSortModel; + SortListModelBuy *mSortModel; DropDown *mSortDropDown; }; |