summaryrefslogtreecommitdiff
path: root/src/gui/popupmenu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/popupmenu.h')
-rw-r--r--src/gui/popupmenu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/popupmenu.h b/src/gui/popupmenu.h
index 3ce363a34..b797138be 100644
--- a/src/gui/popupmenu.h
+++ b/src/gui/popupmenu.h
@@ -50,7 +50,7 @@ class RenameListener final : public gcn::ActionListener
public:
RenameListener();
- void action(const gcn::ActionEvent &event);
+ void action(const gcn::ActionEvent &event) override;
void setMapItem(MapItem* mapItem)
{ mMapItem = mapItem; }
@@ -68,7 +68,7 @@ class PlayerListener : public gcn::ActionListener
public:
PlayerListener();
- void action(const gcn::ActionEvent &event);
+ void action(const gcn::ActionEvent &event) override;
void setNick(std::string name)
{ mNick = name; }
@@ -163,7 +163,7 @@ class PopupMenu final : public Popup, public LinkHandler
* Handles link action.
*/
void handleLink(const std::string &link,
- gcn::MouseEvent *event A_UNUSED);
+ gcn::MouseEvent *event A_UNUSED) override;
private:
void addPlayerRelation(std::string name);