diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-15 14:48:24 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-17 15:07:07 +0200 |
commit | f9d5da8b491e30a08fa6996164e12e4d8715af46 (patch) | |
tree | 2362d2c036744f419757f0a56d33c61531e6a112 /vcl/source/window/mouse.cxx | |
parent | 8914595d4623390e4bac9ebbdf0d5ae9ab69aa8a (diff) |
loplugin:unusedfields in vcl part2
Change-Id: Icd02f63e9738c0bb91348e2084649f9edc281e67
Reviewed-on: https://gerrit.libreoffice.org/38833
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/window/mouse.cxx')
-rw-r--r-- | vcl/source/window/mouse.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/window/mouse.cxx b/vcl/source/window/mouse.cxx index 9f258feb7362..4f1fe06782b6 100644 --- a/vcl/source/window/mouse.cxx +++ b/vcl/source/window/mouse.cxx @@ -406,8 +406,7 @@ void Window::ImplGrabFocusToDocument( GetFocusFlags nFlags ) void Window::MouseMove( const MouseEvent& rMEvt ) { NotifyEvent aNEvt( MouseNotifyEvent::MOUSEMOVE, this, &rMEvt ); - if (!EventNotify(aNEvt)) - mpWindowImpl->mbMouseMove = true; + EventNotify(aNEvt); } void Window::MouseButtonDown( const MouseEvent& rMEvt ) |