Kaydet (Commit) 9758b9aa authored tarafından Luboš Luňák's avatar Luboš Luňák

sal_Int32 conversion warning

üst 87e2f770
...@@ -1119,9 +1119,9 @@ void SwView::WriteUserData( String &rUserData, sal_Bool bBrowse ) ...@@ -1119,9 +1119,9 @@ void SwView::WriteUserData( String &rUserData, sal_Bool bBrowse )
rUserData += ';'; rUserData += ';';
rUserData += String::CreateFromInt32( rVis.Top() ); rUserData += String::CreateFromInt32( rVis.Top() );
rUserData += ';'; rUserData += ';';
rUserData += String::CreateFromInt32( bBrowse ? LONG_MIN : rVis.Right()); rUserData += String::CreateFromInt32( bBrowse ? SAL_MIN_INT32 : rVis.Right());
rUserData += ';'; rUserData += ';';
rUserData += String::CreateFromInt32( bBrowse ? LONG_MIN : rVis.Bottom()); rUserData += String::CreateFromInt32( bBrowse ? SAL_MIN_INT32 : rVis.Bottom());
rUserData += ';'; rUserData += ';';
rUserData += String::CreateFromInt32( rUserData += String::CreateFromInt32(
(sal_uInt16)pWrtShell->GetViewOptions()->GetZoomType());//eZoom; (sal_uInt16)pWrtShell->GetViewOptions()->GetZoomType());//eZoom;
......
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