summaryrefslogtreecommitdiff
path: root/src/gui/chatwindow.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-09-22 02:34:48 +0300
committerAndrei Karas <akaras@inbox.ru>2012-09-22 21:22:21 +0300
commit4a5cdfe19cbb50e3b58149c6e91312366ee4b771 (patch)
tree7a2bbae95b5f6642731f2a1257913baad71d028d /src/gui/chatwindow.h
parent3dcf21babe03cee5080a25e787e1d7e72124288e (diff)
downloadManaVerse-4a5cdfe19cbb50e3b58149c6e91312366ee4b771.tar.gz
ManaVerse-4a5cdfe19cbb50e3b58149c6e91312366ee4b771.tar.bz2
ManaVerse-4a5cdfe19cbb50e3b58149c6e91312366ee4b771.tar.xz
ManaVerse-4a5cdfe19cbb50e3b58149c6e91312366ee4b771.zip
Add override keyword to most overriden methods.
Diffstat (limited to 'src/gui/chatwindow.h')
-rw-r--r--src/gui/chatwindow.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/gui/chatwindow.h b/src/gui/chatwindow.h
index db3d496c3..012666d97 100644
--- a/src/gui/chatwindow.h
+++ b/src/gui/chatwindow.h
@@ -144,7 +144,7 @@ class ChatWindow final : public Window,
/**
* Performs action.
*/
- void action(const gcn::ActionEvent &event);
+ void action(const gcn::ActionEvent &event) override;
/**
* Request focus for typing chat message.
@@ -174,7 +174,7 @@ class ChatWindow final : public Window,
void localChatInput(const std::string &msg);
/** Called when key is pressed */
- void keyPressed(gcn::KeyEvent &event);
+ void keyPressed(gcn::KeyEvent &event) override;
/** Set the chat input as the given text. */
void setInputText(const std::string &text);
@@ -191,14 +191,15 @@ class ChatWindow final : public Window,
/**
* Handles mouse when dragged.
*/
- void mouseDragged(gcn::MouseEvent &event);
+ void mouseDragged(gcn::MouseEvent &event) override;
/**
* Handles mouse when pressed.
*/
- void mousePressed(gcn::MouseEvent &event);
+ void mousePressed(gcn::MouseEvent &event) override;
- void processEvent(Channels channel, const DepricatedEvent &event);
+ void processEvent(Channels channel,
+ const DepricatedEvent &event) override;
/**
* Scrolls the chat window
@@ -271,21 +272,21 @@ class ChatWindow final : public Window,
void copyToClipboard(const int x, const int y) const;
- void optionChanged(const std::string &name);
+ void optionChanged(const std::string &name) override;
- void mouseEntered(gcn::MouseEvent& mouseEvent);
+ void mouseEntered(gcn::MouseEvent& mouseEvent) override;
- void mouseMoved(gcn::MouseEvent &event);
+ void mouseMoved(gcn::MouseEvent &event) override;
- void mouseExited(gcn::MouseEvent& mouseEvent A_UNUSED);
+ void mouseExited(gcn::MouseEvent& mouseEvent A_UNUSED) override;
- void draw(gcn::Graphics* graphics);
+ void draw(gcn::Graphics* graphics) override;
void updateVisibility();
void unHideWindow();
- void widgetResized(const gcn::Event &event);
+ void widgetResized(const gcn::Event &event) override;
protected:
friend class ChatTab;