summaryrefslogtreecommitdiff
path: root/src/gui/buyselldialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/buyselldialog.h')
-rw-r--r--src/gui/buyselldialog.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/buyselldialog.h b/src/gui/buyselldialog.h
index f296126e..2e324d42 100644
--- a/src/gui/buyselldialog.h
+++ b/src/gui/buyselldialog.h
@@ -42,14 +42,14 @@ class BuySellDialog : public Window, public gcn::ActionListener
*/
BuySellDialog(int npcId);
- ~BuySellDialog();
+ ~BuySellDialog() override;
- void setVisible(bool visible);
+ void setVisible(bool visible) override;
/**
* Called when receiving actions from the widgets.
*/
- void action(const gcn::ActionEvent &event);
+ void action(const gcn::ActionEvent &event) override;
/**
* Closes all instances.
@@ -57,7 +57,7 @@ class BuySellDialog : public Window, public gcn::ActionListener
static void closeAll();
private:
- typedef std::list<BuySellDialog*> DialogList;
+ using DialogList = std::list<BuySellDialog *>;
static DialogList instances;
int mNpcId;