diff options
author | Damjan Jovanovic <damjan@apache.org> | 2017-09-19 02:16:41 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-09-21 16:23:01 +0200 |
commit | 7d6a17e4b1451610011d23fe9286ba54c0c9bd15 (patch) | |
tree | 284b26db80bf6beb9a1bb1833f5a0ffe05dfd0a6 /connectivity/source | |
parent | abb70f9db4f8a2a818e8ca2d2edcce2ee9704bb1 (diff) |
More naming errors. There are no "Descriptions" in the SDBCX module,
there are only "Descriptors".
Patch by: me
(cherry picked from commit ccc4532f9ed95f4460941e2762ae3250d37805f5)
Change-Id: Ifd4f34c7b1ba64b449222dc864a38df80f4c6727
Reviewed-on: https://gerrit.libreoffice.org/42535
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/sdbcx/VColumn.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 |
4 files changed, 8 insertions, 8 deletions
diff --git a/connectivity/source/sdbcx/VColumn.cxx b/connectivity/source/sdbcx/VColumn.cxx index 1114f81ce9d6..32064d8034c8 100644 --- a/connectivity/source/sdbcx/VColumn.cxx +++ b/connectivity/source/sdbcx/VColumn.cxx @@ -36,7 +36,7 @@ using namespace ::com::sun::star::sdbc; OUString SAL_CALL OColumn::getImplementationName( ) { if(isNew()) - return OUString("com.sun.star.sdbcx.VColumnDescription"); + return OUString("com.sun.star.sdbcx.VColumnDescriptor"); return OUString("com.sun.star.sdbcx.VColumn"); } @@ -44,7 +44,7 @@ css::uno::Sequence< OUString > SAL_CALL OColumn::getSupportedServiceNames( ) { css::uno::Sequence< OUString > aSupported(1); if(isNew()) - aSupported[0] = "com.sun.star.sdbcx.ColumnDescription"; + aSupported[0] = "com.sun.star.sdbcx.ColumnDescriptor"; else aSupported[0] = "com.sun.star.sdbcx.Column"; diff --git a/connectivity/source/sdbcx/VIndexColumn.cxx b/connectivity/source/sdbcx/VIndexColumn.cxx index 957c607a536c..2dd54116405b 100644 --- a/connectivity/source/sdbcx/VIndexColumn.cxx +++ b/connectivity/source/sdbcx/VIndexColumn.cxx @@ -29,7 +29,7 @@ using namespace ::com::sun::star::uno; OUString SAL_CALL OIndexColumn::getImplementationName( ) { if(isNew()) - return OUString("com.sun.star.sdbcx.VIndexColumnDescription"); + return OUString("com.sun.star.sdbcx.VIndexColumnDescriptor"); return OUString("com.sun.star.sdbcx.VIndexColumn"); } @@ -37,7 +37,7 @@ css::uno::Sequence< OUString > SAL_CALL OIndexColumn::getSupportedServiceNames( { css::uno::Sequence< OUString > aSupported(1); if(isNew()) - aSupported[0] = "com.sun.star.sdbcx.IndexDescription"; + aSupported[0] = "com.sun.star.sdbcx.IndexColumnDescriptor"; else aSupported[0] = "com.sun.star.sdbcx.IndexColumn"; return aSupported; diff --git a/connectivity/source/sdbcx/VKey.cxx b/connectivity/source/sdbcx/VKey.cxx index 2f1de9327912..39e9bdb84c02 100644 --- a/connectivity/source/sdbcx/VKey.cxx +++ b/connectivity/source/sdbcx/VKey.cxx @@ -39,7 +39,7 @@ using namespace ::com::sun::star::lang; OUString SAL_CALL OKey::getImplementationName( ) { if(isNew()) - return OUString("com.sun.star.sdbcx.VKeyDescription"); + return OUString("com.sun.star.sdbcx.VKeyDescriptor"); return OUString("com.sun.star.sdbcx.VKey"); } @@ -47,7 +47,7 @@ css::uno::Sequence< OUString > SAL_CALL OKey::getSupportedServiceNames( ) { css::uno::Sequence< OUString > aSupported(1); if(isNew()) - aSupported[0] = "com.sun.star.sdbcx.KeyDescription"; + aSupported[0] = "com.sun.star.sdbcx.KeyDescriptor"; else aSupported[0] = "com.sun.star.sdbcx.Key"; diff --git a/connectivity/source/sdbcx/VKeyColumn.cxx b/connectivity/source/sdbcx/VKeyColumn.cxx index d06136bebd3b..e01994730e5f 100644 --- a/connectivity/source/sdbcx/VKeyColumn.cxx +++ b/connectivity/source/sdbcx/VKeyColumn.cxx @@ -30,7 +30,7 @@ using namespace cppu; OUString SAL_CALL OKeyColumn::getImplementationName( ) { if(isNew()) - return OUString("com.sun.star.sdbcx.VKeyColumnDescription"); + return OUString("com.sun.star.sdbcx.VKeyColumnDescriptor"); return OUString("com.sun.star.sdbcx.VKeyColumn"); } @@ -38,7 +38,7 @@ css::uno::Sequence< OUString > SAL_CALL OKeyColumn::getSupportedServiceNames( ) { css::uno::Sequence< OUString > aSupported(1); if(isNew()) - aSupported[0] = "com.sun.star.sdbcx.KeyColumnDescription"; + aSupported[0] = "com.sun.star.sdbcx.KeyColumnDescriptor"; else aSupported[0] = "com.sun.star.sdbcx.KeyColumn"; |