fdo#38835 strip out OUString globals

they are largely unnecessary these days, since our OUString infrastructure
gained optimised handling for static char constants.

Change-Id: I07f73484f82d0582252cb4324d4107c998432c37
This commit is contained in:
Noel Grandin
2014-11-03 14:03:54 +02:00
parent b7d8a58ff2
commit 705c48d32e
256 changed files with 1228 additions and 1617 deletions

View File

@@ -812,8 +812,7 @@ OUString SAL_CALL ODatabaseMetaData::getDriverVersion()
throw(SQLException, RuntimeException, std::exception)
{
OSL_TRACE("ODatabaseMetaData::getDriverVersion");
static const OUString sVersion( "0.9.2" );
return sVersion;
return OUString( "0.9.2" );
}
OUString SAL_CALL ODatabaseMetaData::getDatabaseProductVersion()