[Libreoffice-commits] core.git: connectivity/source

Damjan Jovanovic damjan at apache.org
Thu Sep 21 14:23:35 UTC 2017


 connectivity/source/sdbcx/VColumn.cxx      |    4 ++--
 connectivity/source/sdbcx/VIndexColumn.cxx |    4 ++--
 connectivity/source/sdbcx/VKey.cxx         |    4 ++--
 connectivity/source/sdbcx/VKeyColumn.cxx   |    4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 7d6a17e4b1451610011d23fe9286ba54c0c9bd15
Author: Damjan Jovanovic <damjan at apache.org>
Date:   Tue Sep 19 02:16:41 2017 +0000

    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 at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

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";
 


More information about the Libreoffice-commits mailing list