diff options
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/property/ChainablePropertySet.cxx | 2 | ||||
-rw-r--r-- | comphelper/source/property/MasterPropertySet.cxx | 2 | ||||
-rw-r--r-- | comphelper/source/property/propertysethelper.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/comphelper/source/property/ChainablePropertySet.cxx b/comphelper/source/property/ChainablePropertySet.cxx index 53ee49740dda..1f29c4abd478 100644 --- a/comphelper/source/property/ChainablePropertySet.cxx +++ b/comphelper/source/property/ChainablePropertySet.cxx @@ -208,7 +208,7 @@ PropertyState SAL_CALL ChainablePropertySet::getPropertyState( const OUString& P if( aIter == mpInfo->maMap.end()) throw UnknownPropertyException( PropertyName, static_cast< XPropertySet* >( this ) ); - PropertyState aState; + PropertyState aState(PropertyState_AMBIGUOUS_VALUE); _preGetPropertyState(); _getPropertyState( *((*aIter).second), aState ); diff --git a/comphelper/source/property/MasterPropertySet.cxx b/comphelper/source/property/MasterPropertySet.cxx index fea31d35f5b1..c5a59da90cbc 100644 --- a/comphelper/source/property/MasterPropertySet.cxx +++ b/comphelper/source/property/MasterPropertySet.cxx @@ -353,7 +353,7 @@ PropertyState SAL_CALL MasterPropertySet::getPropertyState( const OUString& Prop if( aIter == mpInfo->maMap.end()) throw UnknownPropertyException( PropertyName, static_cast< XPropertySet* >( this ) ); - PropertyState aState; + PropertyState aState(PropertyState_AMBIGUOUS_VALUE); if ( (*aIter).second->mnMapId == 0 ) // 0 means it's one of ours ! { diff --git a/comphelper/source/property/propertysethelper.cxx b/comphelper/source/property/propertysethelper.cxx index eb07e504d8d5..b85fe96ac4a7 100644 --- a/comphelper/source/property/propertysethelper.cxx +++ b/comphelper/source/property/propertysethelper.cxx @@ -218,7 +218,7 @@ PropertyState SAL_CALL PropertySetHelper::getPropertyState( const OUString& Prop aEntries[1] = NULL; - PropertyState aState; + PropertyState aState(PropertyState_AMBIGUOUS_VALUE); _getPropertyStates( (const PropertyMapEntry**)aEntries, &aState ); return aState; |