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/gui/widgets/window.cpp | |
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/gui/widgets/window.cpp')
-rw-r--r-- | src/gui/widgets/window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/window.cpp b/src/gui/widgets/window.cpp index a48b2c062..2187056f9 100644 --- a/src/gui/widgets/window.cpp +++ b/src/gui/widgets/window.cpp @@ -810,7 +810,7 @@ void Window::mousePressed(MouseEvent &event) mMoved = event.getY() <= static_cast<int>(mTitleBarHeight); } - const MouseButton::Type button = event.getButton(); + const MouseButtonT button = event.getButton(); if (button == MouseButton::LEFT) { const int x = event.getX(); |