diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-19 18:54:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 18:54:32 +0300 |
commit | eff128d7019ea0cd137a5fff6cc67825f90c4e1b (patch) | |
tree | d56835cd042f2794b4c5182cedd5eefb96099d5a /src/gui/widgets/shortcutcontainer.h | |
parent | 6a79c4cc085f5cc7fea8a7b383744a40f3ccea6c (diff) | |
download | plus-eff128d7019ea0cd137a5fff6cc67825f90c4e1b.tar.gz plus-eff128d7019ea0cd137a5fff6cc67825f90c4e1b.tar.bz2 plus-eff128d7019ea0cd137a5fff6cc67825f90c4e1b.tar.xz plus-eff128d7019ea0cd137a5fff6cc67825f90c4e1b.zip |
fix code style
Diffstat (limited to 'src/gui/widgets/shortcutcontainer.h')
-rw-r--r-- | src/gui/widgets/shortcutcontainer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/shortcutcontainer.h b/src/gui/widgets/shortcutcontainer.h index 45baabba8..7d37ed18c 100644 --- a/src/gui/widgets/shortcutcontainer.h +++ b/src/gui/widgets/shortcutcontainer.h @@ -66,21 +66,21 @@ class ShortcutContainer : public gcn::Widget, /** * Handles mouse when dragged. */ - virtual void mouseDragged(gcn::MouseEvent &event) override + virtual void mouseDragged(gcn::MouseEvent &event A_UNUSED) override { } /** * Handles mouse when pressed. */ - virtual void mousePressed(gcn::MouseEvent &event) override + virtual void mousePressed(gcn::MouseEvent &event A_UNUSED) override { } /** * Handles mouse release. */ - virtual void mouseReleased(gcn::MouseEvent &event) override + virtual void mouseReleased(gcn::MouseEvent &event A_UNUSED) override { } |