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 | |
parent | 2f2416ff060c780ad87b4d3979112f52da2ae902 (diff) |
remove unnecessary use of OUString constructor in CONNECTIVITY module
Change-Id: Ie32d03920d996db2793ead9940fc90668cde03dd
Diffstat (limited to 'connectivity/source/sdbcx')
-rw-r--r-- | connectivity/source/sdbcx/VColumn.cxx | 4 | ||||
-rw-r--r-- | connectivity/source/sdbcx/VIndex.cxx | 4 | ||||
-rw-r--r-- | connectivity/source/sdbcx/VIndexColumn.cxx | 4 | ||||
-rw-r--r-- | connectivity/source/sdbcx/VKey.cxx | 4 | ||||
-rw-r--r-- | connectivity/source/sdbcx/VKeyColumn.cxx | 4 | ||||
-rw-r--r-- | connectivity/source/sdbcx/VTable.cxx | 4 |
6 files changed, 12 insertions, 12 deletions
diff --git a/connectivity/source/sdbcx/VColumn.cxx b/connectivity/source/sdbcx/VColumn.cxx index 0cc2e2bc1ed5..c3058d033a89 100644 --- a/connectivity/source/sdbcx/VColumn.cxx +++ b/connectivity/source/sdbcx/VColumn.cxx @@ -44,9 +44,9 @@ OUString SAL_CALL OColumn::getImplementationName( ) throw (::com::sun::star::un { ::com::sun::star::uno::Sequence< OUString > aSupported(1); if(isNew()) - aSupported[0] = OUString("com.sun.star.sdbcx.ColumnDescription"); + aSupported[0] = "com.sun.star.sdbcx.ColumnDescription"; else - aSupported[0] = OUString("com.sun.star.sdbcx.Column"); + aSupported[0] = "com.sun.star.sdbcx.Column"; return aSupported; } diff --git a/connectivity/source/sdbcx/VIndex.cxx b/connectivity/source/sdbcx/VIndex.cxx index 65a45208ebad..23f662c74aac 100644 --- a/connectivity/source/sdbcx/VIndex.cxx +++ b/connectivity/source/sdbcx/VIndex.cxx @@ -49,9 +49,9 @@ OUString SAL_CALL OIndex::getImplementationName( ) throw (::com::sun::star::uno { ::com::sun::star::uno::Sequence< OUString > aSupported(1); if(isNew()) - aSupported[0] = OUString("com.sun.star.sdbcx.IndexDescriptor"); + aSupported[0] = "com.sun.star.sdbcx.IndexDescriptor"; else - aSupported[0] = OUString("com.sun.star.sdbcx.Index"); + aSupported[0] = "com.sun.star.sdbcx.Index"; return aSupported; } diff --git a/connectivity/source/sdbcx/VIndexColumn.cxx b/connectivity/source/sdbcx/VIndexColumn.cxx index cf184346b375..ebb83ba0188e 100644 --- a/connectivity/source/sdbcx/VIndexColumn.cxx +++ b/connectivity/source/sdbcx/VIndexColumn.cxx @@ -37,9 +37,9 @@ OUString SAL_CALL OIndexColumn::getImplementationName( ) throw (::com::sun::sta { ::com::sun::star::uno::Sequence< OUString > aSupported(1); if(isNew()) - aSupported[0] = OUString("com.sun.star.sdbcx.IndexDescription"); + aSupported[0] = "com.sun.star.sdbcx.IndexDescription"; else - aSupported[0] = OUString("com.sun.star.sdbcx.Index"); + aSupported[0] = "com.sun.star.sdbcx.Index"; return aSupported; } 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; } diff --git a/connectivity/source/sdbcx/VKeyColumn.cxx b/connectivity/source/sdbcx/VKeyColumn.cxx index dbd99779859b..db8929dcaaed 100644 --- a/connectivity/source/sdbcx/VKeyColumn.cxx +++ b/connectivity/source/sdbcx/VKeyColumn.cxx @@ -38,9 +38,9 @@ OUString SAL_CALL OKeyColumn::getImplementationName( ) throw (::com::sun::star: { ::com::sun::star::uno::Sequence< OUString > aSupported(1); if(isNew()) - aSupported[0] = OUString("com.sun.star.sdbcx.KeyColumnDescription"); + aSupported[0] = "com.sun.star.sdbcx.KeyColumnDescription"; else - aSupported[0] = OUString("com.sun.star.sdbcx.KeyColumn"); + aSupported[0] = "com.sun.star.sdbcx.KeyColumn"; return aSupported; } diff --git a/connectivity/source/sdbcx/VTable.cxx b/connectivity/source/sdbcx/VTable.cxx index ae1735ff5521..b4f1338ce670 100644 --- a/connectivity/source/sdbcx/VTable.cxx +++ b/connectivity/source/sdbcx/VTable.cxx @@ -52,9 +52,9 @@ OUString SAL_CALL OTable::getImplementationName( ) throw (::com::sun::star::uno { ::com::sun::star::uno::Sequence< OUString > aSupported(1); if(isNew()) - aSupported[0] = OUString("com.sun.star.sdbcx.TableDescriptor"); + aSupported[0] = "com.sun.star.sdbcx.TableDescriptor"; else - aSupported[0] = OUString("com.sun.star.sdbcx.Table"); + aSupported[0] = "com.sun.star.sdbcx.Table"; return aSupported; } |