Kaydet (Commit) c2c37de0 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Avoid bogus "may be used uninitialized" warning

Change-Id: Ib763b8ab1e728d400859a7abb355bba182b28684
üst 7193d4ef
......@@ -4306,7 +4306,7 @@ void SvxItemPropertySet_setPropertyValue( const SvxItemPropertySet& rPropSet, co
bool bDontConvertNegativeValues = ( pMap->nWID == XATTR_FILLBMP_SIZEX || pMap->nWID == XATTR_FILLBMP_SIZEY );
if( pMap->nWID == EE_PARA_LRSPACE ) // n#757419 Don't import negative values
{
sal_Int32 nVal;
sal_Int32 nVal = sal_Int32();
if( (aVal >>= nVal) && nVal < 0 )
aVal <<= ( sal_Int32 ) 0;
}
......
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