diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-11 15:43:48 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-11 15:44:26 -0500 |
commit | 58fae0f715433a72d814584d97a1368f8a1b62d2 (patch) | |
tree | 27a7505bda8238d6d0e4067e23969b61aba01932 /svx/source/stbctrls/selctrl.cxx | |
parent | 4dbb04e5701efe084fbfd3f06128dd33a7d8965b (diff) |
remove osolete ifdef
now that the ScaleDPI is forced to 1 on mac there is no need
for these ifdef
Change-Id: I0ca3bc301b63f5f4c7d1eb36f27bc9b6ab41af29
Diffstat (limited to 'svx/source/stbctrls/selctrl.cxx')
-rw-r--r-- | svx/source/stbctrls/selctrl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/stbctrls/selctrl.cxx b/svx/source/stbctrls/selctrl.cxx index a56cd0af9d58..acfb2da8e098 100644 --- a/svx/source/stbctrls/selctrl.cxx +++ b/svx/source/stbctrls/selctrl.cxx @@ -80,14 +80,14 @@ SvxSelectionModeControl::SvxSelectionModeControl( sal_uInt16 _nSlotId, mnState( 0 ), maImage( SVX_RES( RID_SVXBMP_SELECTION ) ) { -#ifndef MACOSX +//#ifndef MACOSX if ( GetStatusBar().GetDPIScaleFactor() > 1 ) { BitmapEx b = maImage.GetBitmapEx(); b.Scale(GetStatusBar().GetDPIScaleFactor(), GetStatusBar().GetDPIScaleFactor(), BMP_SCALE_FAST); maImage = Image(b); } -#endif +//#endif GetStatusBar().SetItemText( GetId(), "" ); } |