diff options
Diffstat (limited to 'src/gui/item_amount.h')
-rw-r--r-- | src/gui/item_amount.h | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/gui/item_amount.h b/src/gui/item_amount.h index e0faf5de..4b889b86 100644 --- a/src/gui/item_amount.h +++ b/src/gui/item_amount.h @@ -31,7 +31,13 @@ #define AMOUNT_TRADE_ADD 1 #define AMOUNT_ITEM_DROP 2 -class ItemAmountWindow : public Window, public gcn::ActionListener { +/** + * Window used for selecting the amount of items to drop. + * + * \ingroup Interface + */ +class ItemAmountWindow : public Window, public gcn::ActionListener +{ public: /** * Constructor. @@ -59,15 +65,8 @@ class ItemAmountWindow : public Window, public gcn::ActionListener { void resetAmount(); private: - /** - * Amount of items to be dropped. - */ - int amount; - - /** - * Item Amount captions. - */ - gcn::Label *itemAmountLabel; + int amount; /**< Amount of items to be dropped. */ + gcn::Label *itemAmountLabel; /**< Item amount caption. */ /** * Item Amount buttons. |