summaryrefslogtreecommitdiff
path: root/svx/source/table/propertyset.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/table/propertyset.cxx')
-rw-r--r--svx/source/table/propertyset.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/table/propertyset.cxx b/svx/source/table/propertyset.cxx
index 25302611510d..81bbc8b2bdb7 100644
--- a/svx/source/table/propertyset.cxx
+++ b/svx/source/table/propertyset.cxx
@@ -69,7 +69,7 @@ const Property* FastPropertySetInfo::hasProperty( const OUString& aName )
{
PropertyMap::iterator aIter( maMap.find( aName ) );
if( aIter == maMap.end() )
- return 0;
+ return nullptr;
else
return &maProperties[(*aIter).second];
}
@@ -94,7 +94,7 @@ Property SAL_CALL FastPropertySetInfo::getPropertyByName( const OUString& aName
sal_Bool SAL_CALL FastPropertySetInfo::hasPropertyByName( const OUString& aName ) throw (RuntimeException, std::exception)
{
- return hasProperty( aName ) != 0;
+ return hasProperty( aName ) != nullptr;
}
FastPropertySet::FastPropertySet( const rtl::Reference< FastPropertySetInfo >& xInfo )