diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-25 17:35:42 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-04 10:11:08 +0200 |
commit | 5285beeaa49f6678b471d472868c305c7d9da5f9 (patch) | |
tree | a3dbd28995142ab16b448f28e95821115ef5408f /bridges | |
parent | aeb41c9b9b7559c6d87bf92807acdc0df9e104cc (diff) |
remove redundant calls to OUString constructor in if expression
Convert code like:
if( aStr == OUString("xxxx") )
to this:
if( aStr == "xxxx" )
Change-Id: I8d201f048477731eff590fb988259ef0935c080c
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/test/testcomp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/test/testcomp.cxx b/bridges/test/testcomp.cxx index 2ccda76c5c26..d9d19cf2f5af 100644 --- a/bridges/test/testcomp.cxx +++ b/bridges/test/testcomp.cxx @@ -95,7 +95,7 @@ Any OInstanceProvider::queryInterface( const Type & aType ) throw ( RuntimeExce ::com::sun::star::uno::RuntimeException) { // Tries to get the PerformanceTestObject - if( sObjectName == OUString( "TestRemoteObject" ) ) + if( sObjectName == "TestRemoteObject" ) { return m_rSMgr->createInstance( OUString("com.sun.star.test.performance.PerformanceTestObject") ); |