ka102: #i116970# Write extents of exported SVG / syntax

This commit is contained in:
ka 2011-02-21 02:57:37 +01:00
parent f759ad09f5
commit 7f56154116

View file

@ -428,7 +428,7 @@ void FilterConfigItem::WriteBool( const OUString& rKey, sal_Bool bNewValue )
Any aAny;
if ( ImplGetPropertyValue( aAny, xPropSet, rKey, sal_True ) )
{
sal_Bool bOldValue;
sal_Bool bOldValue = bNewValue;
if ( aAny >>= bOldValue )
{
if ( bOldValue != bNewValue )
@ -462,7 +462,7 @@ void FilterConfigItem::WriteInt32( const OUString& rKey, sal_Int32 nNewValue )
if ( ImplGetPropertyValue( aAny, xPropSet, rKey, sal_True ) )
{
sal_Int32 nOldValue;
sal_Int32 nOldValue = nNewValue;
if ( aAny >>= nOldValue )
{
if ( nOldValue != nNewValue )