summaryrefslogtreecommitdiffstats
path: root/idl/source/cmptools/hash.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/source/cmptools/hash.cxx')
-rw-r--r--idl/source/cmptools/hash.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idl/source/cmptools/hash.cxx b/idl/source/cmptools/hash.cxx
index dc6e27cebf98..6ca4a7c7cac2 100644
--- a/idl/source/cmptools/hash.cxx
+++ b/idl/source/cmptools/hash.cxx
@@ -132,7 +132,7 @@ sal_uInt32 SvStringHashTable::HashFunc( const OString& rElement ) const
nShift += 4;
pStr++;
}
- return( nHash );
+ return nHash;
}
OString SvStringHashTable::GetNearString( const OString& rName ) const
@@ -179,7 +179,7 @@ SvStringHashEntry * SvStringHashTable::Get( sal_uInt32 nIndex ) const
{
if( IsEntry( nIndex ) )
return pEntries + nIndex;
- return( NULL );
+ return NULL;
}
bool SvStringHashTable::equals( const OString& rElement,