diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-30 00:53:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-30 00:53:40 +0300 |
commit | f29616d8d1309ee135afe2b2e7baf1d91d677a95 (patch) | |
tree | 77624591a88075bc2b1128520d950c717d353288 /src/input/mouseinput.h | |
parent | ec51be4fd71babf30a73332bc4b73edb994ee462 (diff) | |
download | mv-f29616d8d1309ee135afe2b2e7baf1d91d677a95.tar.gz mv-f29616d8d1309ee135afe2b2e7baf1d91d677a95.tar.bz2 mv-f29616d8d1309ee135afe2b2e7baf1d91d677a95.tar.xz mv-f29616d8d1309ee135afe2b2e7baf1d91d677a95.zip |
Convert MouseButton enum into strong typed enum.
Diffstat (limited to 'src/input/mouseinput.h')
-rw-r--r-- | src/input/mouseinput.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/mouseinput.h b/src/input/mouseinput.h index c69bd72b7..f84303308 100644 --- a/src/input/mouseinput.h +++ b/src/input/mouseinput.h @@ -95,12 +95,12 @@ class MouseInput final return mType; } - void setButton(MouseButton::Type button) + void setButton(MouseButtonT button) { mButton = button; } - MouseButton::Type getButton() const + MouseButtonT getButton() const { return mButton; } @@ -167,7 +167,7 @@ class MouseInput final /** * Holds the button of the mouse input. */ - MouseButton::Type mButton; + MouseButtonT mButton; /** * Holds the timestamp of the mouse input. Used to |