From 31d902d3c00fdc5f088aff433b7ebf308a718339 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 7 Nov 2014 12:30:39 +0200 Subject: fdo#84938: replace MOUSE_ modifier constants with enum and make the two categories of constants non-overlapping, we really don't need to risk confusion in order to save 6 bits in a data structure like this. Change-Id: I2251195d8e45ed04e2a89e47ae9c3e52cf0475c0 --- sfx2/source/statbar/stbitem.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sfx2/source/statbar') diff --git a/sfx2/source/statbar/stbitem.cxx b/sfx2/source/statbar/stbitem.cxx index 70e828000a4d..27ba304cea87 100644 --- a/sfx2/source/statbar/stbitem.cxx +++ b/sfx2/source/statbar/stbitem.cxx @@ -324,7 +324,7 @@ throw ( uno::RuntimeException, std::exception ) ::MouseEvent aMouseEvent( aPos, (sal_uInt16)rMouseEvent.ClickCount, - 0, + MouseEventModifiers::NONE, convertAwtToVCLMouseButtons( rMouseEvent.Buttons ), 0 ); @@ -342,7 +342,7 @@ throw (uno::RuntimeException, std::exception) ::MouseEvent aMouseEvent( aPos, (sal_uInt16)rMouseEvent.ClickCount, - 0, + MouseEventModifiers::NONE, convertAwtToVCLMouseButtons( rMouseEvent.Buttons ), 0 ); return MouseMove( aMouseEvent ); @@ -359,7 +359,7 @@ throw ( uno::RuntimeException, std::exception ) ::MouseEvent aMouseEvent( aPos, (sal_uInt16)rMouseEvent.ClickCount, - 0, + MouseEventModifiers::NONE, convertAwtToVCLMouseButtons( rMouseEvent.Buttons ), 0 ); return MouseButtonUp( aMouseEvent ); -- cgit