diff options
Diffstat (limited to 'stoc/test/testintrosp.cxx')
-rw-r--r-- | stoc/test/testintrosp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stoc/test/testintrosp.cxx b/stoc/test/testintrosp.cxx index 45500466c6bc..56e4f1a361c8 100644 --- a/stoc/test/testintrosp.cxx +++ b/stoc/test/testintrosp.cxx @@ -179,7 +179,7 @@ OUString AnyToString( const Any& aValue, sal_Bool bIncludeType, const Reference< if( bIncludeType ) { Reference< XIdlClass > xIdlClass = TypeToIdlClass( aValType, xMgr ); - aRetStr = aRetStr + OUString( OUString(" (Typ: ") ) + xIdlClass->getName() + OUString("")); + aRetStr += " (Typ: " + xIdlClass->getName() + ")"; } return aRetStr; } |