diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-04-13 23:12:03 +0200 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-04-13 23:13:58 +0200 |
commit | f7ea60218ae96cda55dc39073fac807df64f18de (patch) | |
tree | 0fc58ac421c0fc33febe3d410bf0d5c03075f99a /sd | |
parent | 24ae12911a38343b29a68eb75ccbb2589dd383cc (diff) |
fdo#74079 - sd html export: fix false width values
Change-Id: I498310525cf912706d64adb773c951b197b6fc72
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/html/pubdlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/filter/html/pubdlg.cxx b/sd/source/filter/html/pubdlg.cxx index c79bb4383928..27189d786005 100644 --- a/sd/source/filter/html/pubdlg.cxx +++ b/sd/source/filter/html/pubdlg.cxx @@ -807,11 +807,11 @@ void SdPublishingDlg::GetParameterSequence( Sequence< PropertyValue >& rParams ) // Page 3 aValue.Name = "Width"; - sal_Int32 nTmpWidth = 512; + sal_Int32 nTmpWidth = 640; if( pPage3_Resolution_2->IsChecked() ) - nTmpWidth = 640; - else if( pPage3_Resolution_3->IsChecked() ) nTmpWidth = 800; + else if( pPage3_Resolution_3->IsChecked() ) + nTmpWidth = 1024; aValue.Value <<= nTmpWidth; aProps.push_back( aValue ); |