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

Damjan Jovanovic damjan at apache.org
Thu Sep 21 07:59:01 UTC 2017


 connectivity/source/sdbcx/VIndexColumn.cxx |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit d6e8e522a396f97f71a92d9b5d7e03947a4ad803
Author: Damjan Jovanovic <damjan at apache.org>
Date:   Tue Sep 19 02:02:42 2017 +0000

    Fix a typo in the XServiceInfo implementation
    
    for main/connectivity/source/sdbcx/VIndexColumn.cxx.
    
    It's implementation/service names are com.sun.star.sdbcx.VIndexColumn and
    com.sun.star.sdbcx.IndexColumn, not com.sun.star.sdbcx.VIndex and
    com.sun.star.sdbcx.Index.
    
    Patch by: me
    
    (cherry picked from commit d2f0e14de2a52180ed84c0402e47a0de16589203)
    
    Change-Id: Ie8a8bead7f7b5dd2c655603a7355bc0b2678ef7e
    Reviewed-on: https://gerrit.libreoffice.org/42534
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/connectivity/source/sdbcx/VIndexColumn.cxx b/connectivity/source/sdbcx/VIndexColumn.cxx
index 6de4ad4dbf9b..957c607a536c 100644
--- a/connectivity/source/sdbcx/VIndexColumn.cxx
+++ b/connectivity/source/sdbcx/VIndexColumn.cxx
@@ -30,7 +30,7 @@ OUString SAL_CALL OIndexColumn::getImplementationName(  )
 {
     if(isNew())
         return OUString("com.sun.star.sdbcx.VIndexColumnDescription");
-    return OUString("com.sun.star.sdbcx.VIndex");
+    return OUString("com.sun.star.sdbcx.VIndexColumn");
 }
 
 css::uno::Sequence< OUString > SAL_CALL OIndexColumn::getSupportedServiceNames(  )
@@ -39,8 +39,7 @@ css::uno::Sequence< OUString > SAL_CALL OIndexColumn::getSupportedServiceNames(
     if(isNew())
         aSupported[0] = "com.sun.star.sdbcx.IndexDescription";
     else
-        aSupported[0] = "com.sun.star.sdbcx.Index";
-
+        aSupported[0] = "com.sun.star.sdbcx.IndexColumn";
     return aSupported;
 }
 


More information about the Libreoffice-commits mailing list