ka102: #i116970# Write extents of exported SVG / syntax
This commit is contained in:
parent
f759ad09f5
commit
7f56154116
1 changed files with 2 additions and 2 deletions
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue