diff options
author | Freeyorp <Freeyorp101@NOSPAM@hotmail.com> | 2009-05-07 16:30:50 +1200 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-05-07 22:58:19 -0600 |
commit | 02401cfae13ea9d2c836e707f21164729f8ee364 (patch) | |
tree | 6d77076dd18de5894a3176b5061f5a826e492600 /src/gui/itemamount.h | |
parent | af09f9d13118eaf17fb6cebcf86ee8100003d834 (diff) | |
download | mana-02401cfae13ea9d2c836e707f21164729f8ee364.tar.gz mana-02401cfae13ea9d2c836e707f21164729f8ee364.tar.bz2 mana-02401cfae13ea9d2c836e707f21164729f8ee364.tar.xz mana-02401cfae13ea9d2c836e707f21164729f8ee364.zip |
Put an input field back into the itemamount window.
Diffstat (limited to 'src/gui/itemamount.h')
-rw-r--r-- | src/gui/itemamount.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/itemamount.h b/src/gui/itemamount.h index 33d6d816..1ae3f0d5 100644 --- a/src/gui/itemamount.h +++ b/src/gui/itemamount.h @@ -26,6 +26,7 @@ #include <guichan/actionlistener.hpp> +class IntTextField; class Item; /** @@ -71,7 +72,7 @@ class ItemAmountWindow : public Window, public gcn::ActionListener ItemAmountWindow(Usage usage, Window *parent, Item *item, int maxRange = 0); - gcn::Label *mItemAmountLabel; /**< Item amount caption. */ + IntTextField *mItemAmountTextField; /**< Item amount caption. */ Item *mItem; int mMax; |