diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-04 13:51:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-11 11:21:25 +0200 |
commit | 1bdb2b6f06c556b9af91dba4f29f3ac73190b09e (patch) | |
tree | 1d941e17952cd891f5309fd862215dd09a84b001 /connectivity/source/sdbcx/VKey.cxx | |
parent | 2f2416ff060c780ad87b4d3979112f52da2ae902 (diff) |
remove unnecessary use of OUString constructor in CONNECTIVITY module
Change-Id: Ie32d03920d996db2793ead9940fc90668cde03dd
Diffstat (limited to 'connectivity/source/sdbcx/VKey.cxx')
-rw-r--r-- | connectivity/source/sdbcx/VKey.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/sdbcx/VKey.cxx b/connectivity/source/sdbcx/VKey.cxx index bbe9f64ed2d6..61da3eb3375e 100644 --- a/connectivity/source/sdbcx/VKey.cxx +++ b/connectivity/source/sdbcx/VKey.cxx @@ -47,9 +47,9 @@ OUString SAL_CALL OKey::getImplementationName( ) throw (::com::sun::star::uno:: { ::com::sun::star::uno::Sequence< OUString > aSupported(1); if(isNew()) - aSupported[0] = OUString("com.sun.star.sdbcx.KeyDescription"); + aSupported[0] = "com.sun.star.sdbcx.KeyDescription"; else - aSupported[0] = OUString("com.sun.star.sdbcx.Key"); + aSupported[0] = "com.sun.star.sdbcx.Key"; return aSupported; } |