summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/source/ui/uno/unomod.cxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/sw/source/ui/uno/unomod.cxx b/sw/source/ui/uno/unomod.cxx
index caee7c50a8b9..91334001adaf 100644
--- a/sw/source/ui/uno/unomod.cxx
+++ b/sw/source/ui/uno/unomod.cxx
@@ -693,7 +693,7 @@ void SwXViewSettings::_setSingleValue( const comphelper::PropertyInfo & rInfo, c
sal_Int16 nZoom = 0;
if(!(rValue >>= nZoom))
throw IllegalArgumentException();
- SvxZoomType eZoom = (SvxZoomType)USHRT_MAX;
+ SvxZoomType eZoom;
switch (nZoom)
{
case view::DocumentZoomType::OPTIMAL:
@@ -716,11 +716,8 @@ void SwXViewSettings::_setSingleValue( const comphelper::PropertyInfo & rInfo, c
::rtl::OUString( "SwXViewSettings: invalid zoom type"), 0, 0);
break;
}
- if(eZoom < USHRT_MAX)
- {
- mpViewOption->SetZoomType( eZoom );
- mbApplyZoom = sal_True;
- }
+ mpViewOption->SetZoomType( eZoom );
+ mbApplyZoom = sal_True;
}
break;
case HANDLE_VIEWSET_ONLINE_LAYOUT :