summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-01-21 21:08:14 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-01-21 21:09:11 +0100
commitbd2302200b7bc8005662b7034346866ae22da38b (patch)
tree602dff5dc2f1e9448dbdff14710c2072aa7e07ab /stoc
parent1b1f201b58b392a372ffc9070d41844997a2ec7d (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')
-rw-r--r--stoc/test/testintrosp.cxx2
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;
}