diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-06-28 04:16:51 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-07-03 21:01:11 +0200 |
commit | ae56c9862222718871b6bf098162c2b8b4c44b82 (patch) | |
tree | 87c4c179e5b964f475a24236afb11d35adb82ca8 | |
parent | 9ea89aab5c03795092a207c484a84c34d2cd80f2 (diff) |
always import page scaling, tdf#65848
Change-Id: If5bad2336443280dd33d750b1b2749a06f2b5101
Reviewed-on: https://gerrit.libreoffice.org/39334
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
(cherry picked from commit fef72f9623bac7f9aa50b4f2606e6ec6282cfe1f)
Reviewed-on: https://gerrit.libreoffice.org/39340
Reviewed-by: Eike Rathke <erack@redhat.com>
-rw-r--r-- | sc/source/filter/oox/pagesettings.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/oox/pagesettings.cxx b/sc/source/filter/oox/pagesettings.cxx index 5af216a589d4..a34aca50b88b 100644 --- a/sc/source/filter/oox/pagesettings.cxx +++ b/sc/source/filter/oox/pagesettings.cxx @@ -911,7 +911,7 @@ void PageSettingsConverter::writePageSettingsProperties( else { // scale may be 0 which indicates uninitialized - sal_Int16 nScale = (rModel.mbValidSettings && (rModel.mnScale > 0)) ? getLimitedValue< sal_Int16, sal_Int32 >( rModel.mnScale, 10, 400 ) : 100; + sal_Int16 nScale = (rModel.mnScale > 0) ? getLimitedValue< sal_Int16, sal_Int32 >( rModel.mnScale, 10, 400 ) : 100; rPropSet.setProperty( PROP_PageScale, nScale ); } |