Kaydet (Commit) f7ea6021 authored tarafından Tomaž Vajngerl's avatar Tomaž Vajngerl

fdo#74079 - sd html export: fix false width values

Change-Id: I498310525cf912706d64adb773c951b197b6fc72
üst 24ae1291
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment