Kaydet (Commit) bd230220 authored tarafından Julien Nabet's avatar Julien Nabet

Fix parenthesis and simplify

See http://nabble.documentfoundation.org/About-parenthesis-problem-in-testintrosp-cxx-td4030420.html
Thank you Lubos!

Change-Id: If46b3d3aa304f2c16d66813ff337a70b3a520e76
üst 1b1f201b
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment