summaryrefslogtreecommitdiff
path: root/svtools/source
diff options
context:
space:
mode:
authoros <os@openoffice.org>2011-02-03 16:51:12 +0100
committeros <os@openoffice.org>2011-02-03 16:51:12 +0100
commitef75ddb6d32316419b8912271e5177d3bb2c0361 (patch)
tree14e11633616e87229457f4200db41a3412cb8c95 /svtools/source
parentcc44577e3140e589df9eea8dda3d5bbbbaed174a (diff)
initialize boolean value
Diffstat (limited to 'svtools/source')
-rw-r--r--svtools/source/filter.vcl/filter/FilterConfigItem.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/filter.vcl/filter/FilterConfigItem.cxx b/svtools/source/filter.vcl/filter/FilterConfigItem.cxx
index 312f62af9d84..830ee1ecf80c 100644
--- a/svtools/source/filter.vcl/filter/FilterConfigItem.cxx
+++ b/svtools/source/filter.vcl/filter/FilterConfigItem.cxx
@@ -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 = false;
if ( aAny >>= bOldValue )
{
if ( bOldValue != bNewValue )