diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-01-21 21:08:14 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-01-21 21:09:11 +0100 |
commit | bd2302200b7bc8005662b7034346866ae22da38b (patch) | |
tree | 602dff5dc2f1e9448dbdff14710c2072aa7e07ab /stoc/test | |
parent | 1b1f201b58b392a372ffc9070d41844997a2ec7d (diff) |
Fix parenthesis and simplify
See http://nabble.documentfoundation.org/About-parenthesis-problem-in-testintrosp-cxx-td4030420.html
Thank you Lubos!
Change-Id: If46b3d3aa304f2c16d66813ff337a70b3a520e76
Diffstat (limited to 'stoc/test')
-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; } |