diff options
Diffstat (limited to 'svx/source/dialog/measctrl.cxx')
-rw-r--r-- | svx/source/dialog/measctrl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/measctrl.cxx b/svx/source/dialog/measctrl.cxx index fffd12b95377..740ddc8b938a 100644 --- a/svx/source/dialog/measctrl.cxx +++ b/svx/source/dialog/measctrl.cxx @@ -86,8 +86,8 @@ void SvxXMeasurePreview::SetAttributes( const SfxItemSet& rInAttrs ) void SvxXMeasurePreview::MouseButtonDown( const MouseEvent& rMEvt ) { - sal_Bool bZoomIn = rMEvt.IsLeft() && !rMEvt.IsShift(); - sal_Bool bZoomOut = rMEvt.IsRight() || rMEvt.IsShift(); + bool bZoomIn = rMEvt.IsLeft() && !rMEvt.IsShift(); + bool bZoomOut = rMEvt.IsRight() || rMEvt.IsShift(); sal_Bool bCtrl = rMEvt.IsMod1(); if( bZoomIn || bZoomOut ) |