summaryrefslogtreecommitdiffstats
path: root/comphelper/source/property/propertysethelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/property/propertysethelper.cxx')
-rw-r--r--comphelper/source/property/propertysethelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/property/propertysethelper.cxx b/comphelper/source/property/propertysethelper.cxx
index 66b7843fc137..eb07e504d8d5 100644
--- a/comphelper/source/property/propertysethelper.cxx
+++ b/comphelper/source/property/propertysethelper.cxx
@@ -40,9 +40,9 @@ public:
PropertyMapEntry const * PropertySetHelperImpl::find( const OUString& aName ) const throw()
{
- PropertyMap::const_iterator aIter = mpInfo->getPropertyMap()->find( aName );
+ PropertyMap::const_iterator aIter = mpInfo->getPropertyMap().find( aName );
- if( mpInfo->getPropertyMap()->end() != aIter )
+ if( mpInfo->getPropertyMap().end() != aIter )
{
return (*aIter).second;
}