summaryrefslogtreecommitdiff
path: root/src/gui/sell.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/sell.h')
-rw-r--r--src/gui/sell.h24
1 files changed, 11 insertions, 13 deletions
diff --git a/src/gui/sell.h b/src/gui/sell.h
index 86caff55..59bc58c2 100644
--- a/src/gui/sell.h
+++ b/src/gui/sell.h
@@ -77,22 +77,20 @@ class SellDialog : public Window, public gcn::ActionListener
private:
Network *mNetwork;
- gcn::Button *sellButton;
- gcn::Button *quitButton;
- gcn::Button *increaseButton;
- gcn::Button *decreaseButton;
- gcn::ListBox *itemList;
- gcn::ScrollArea *scrollArea;
- gcn::Label *moneyLabel;
- gcn::Label *itemDescLabel;
- gcn::Label *itemEffectLabel;
- gcn::Label *quantityLabel;
- gcn::Slider *slider;
+ gcn::Button *mSellButton;
+ gcn::Button *mIncreaseButton;
+ gcn::Button *mDecreaseButton;
+ gcn::ListBox *mItemList;
+ gcn::Label *mMoneyLabel;
+ gcn::Label *mItemDescLabel;
+ gcn::Label *mItemEffectLabel;
+ gcn::Label *mQuantityLabel;
+ gcn::Slider *mSlider;
ShopItems *mShopItems;
- int m_maxItems;
- int m_amountItems;
+ int mMaxItems;
+ int mAmountItems;
};
#endif