OUString::concat() does not modify in-place

Change-Id: I298f33a23e44146d7ce5fbf72d176020804e03d6
This commit is contained in:
Tor Lillqvist
2012-11-28 21:49:00 +02:00
parent 287a18429f
commit 60e7472b9d
2 changed files with 3 additions and 3 deletions

View File

@@ -176,7 +176,7 @@ ProviderCache::populateCache() throw ( RuntimeException )
{
::rtl::OUString temp = OUSTR(
"ProviderCache::populateCache: couldn't obtain XSingleComponentFactory for " );
temp.concat( serviceName );
temp = temp.concat( serviceName );
throw RuntimeException( temp.concat( e.Message ), Reference< XInterface >() );
}
}