diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-30 13:05:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-30 13:11:34 +0300 |
commit | 0cff44ef5c1383a638c30cc9f5f8c81b6b4318f9 (patch) | |
tree | 077c2ff59d6656096aa0acaaf4dd6bf4fb7867f7 /src/guichan/include/guichan/mouseevent.hpp | |
parent | 6b1684d33dec02eb6308bb3d8d3707f4d5252ba5 (diff) | |
download | mv-0cff44ef5c1383a638c30cc9f5f8c81b6b4318f9.tar.gz mv-0cff44ef5c1383a638c30cc9f5f8c81b6b4318f9.tar.bz2 mv-0cff44ef5c1383a638c30cc9f5f8c81b6b4318f9.tar.xz mv-0cff44ef5c1383a638c30cc9f5f8c81b6b4318f9.zip |
Add unused warnings to other files.
Diffstat (limited to 'src/guichan/include/guichan/mouseevent.hpp')
-rw-r--r-- | src/guichan/include/guichan/mouseevent.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/guichan/include/guichan/mouseevent.hpp b/src/guichan/include/guichan/mouseevent.hpp index ba2200d8d..86d224845 100644 --- a/src/guichan/include/guichan/mouseevent.hpp +++ b/src/guichan/include/guichan/mouseevent.hpp @@ -94,7 +94,7 @@ namespace gcn * * @return The button of the mouse event. */ - unsigned int getButton() const; + unsigned int getButton() const A_WARN_UNUSED; /** * Gets the x coordinate of the mouse event. @@ -104,7 +104,7 @@ namespace gcn * @return The x coordinate of the mouse event. * @see Widget::addMouseListener, Widget::removeMouseListener */ - int getX() const; + int getX() const A_WARN_UNUSED; /** * Gets the y coordinate of the mouse event. @@ -114,7 +114,7 @@ namespace gcn * @return The y coordinate of the mouse event. * @see Widget::addMouseListener, Widget::removeMouseListener */ - int getY() const; + int getY() const A_WARN_UNUSED; /** * Gets the number of clicks generated with the same button. @@ -122,14 +122,14 @@ namespace gcn * * @return The number of clicks generated with the same button. */ - int getClickCount() const; + int getClickCount() const A_WARN_UNUSED; /** * Gets the type of the event. * * @return The type of the event. */ - unsigned int getType() const; + unsigned int getType() const A_WARN_UNUSED; /** * Mouse event types. |