diff options
Diffstat (limited to 'src/gui/windows/selldialog.h')
-rw-r--r-- | src/gui/windows/selldialog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/windows/selldialog.h b/src/gui/windows/selldialog.h index 3f51aad76..f811cc311 100644 --- a/src/gui/windows/selldialog.h +++ b/src/gui/windows/selldialog.h @@ -80,14 +80,14 @@ class SellDialog final : public Window, /** * Called when receiving actions from the widgets. */ - void action(const gcn::ActionEvent &event) override; + void action(const gcn::ActionEvent &event) override final; /** * Updates labels according to selected item. * * @see SelectionListener::selectionChanged */ - void valueChanged(const gcn::SelectionEvent &event) override; + void valueChanged(const gcn::SelectionEvent &event) override final; /** * Gives Player's Money amount @@ -97,7 +97,7 @@ class SellDialog final : public Window, /** * Sets the visibility of this window. */ - void setVisible(bool visible) override; + void setVisible(bool visible) override final; void addItem(const int id, const unsigned char color, const int amount, const int price); |