diff options
Diffstat (limited to 'basic/source/classes')
-rw-r--r-- | basic/source/classes/sbunoobj.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx index 6b0451b01a1d..15c5e3778201 100644 --- a/basic/source/classes/sbunoobj.cxx +++ b/basic/source/classes/sbunoobj.cxx @@ -1898,7 +1898,7 @@ static OUString Impl_DumpProperties(SbUnoObject& rUnoObj) else aPropStr.append( "; " ); - aRet.append( aPropStr.makeStringAndClear() ); + aRet.append( aPropStr ); } } return aRet.makeStringAndClear(); @@ -4811,7 +4811,7 @@ OUString SbUnoStructRefObject::Impl_DumpProperties() { aPropStr.append( "; " ); } - aRet.append( aPropStr.makeStringAndClear() ); + aRet.append( aPropStr ); } } return aRet.makeStringAndClear(); |