You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by da...@apache.org on 2017/09/19 02:02:42 UTC

svn commit: r1808809 - /openoffice/trunk/main/connectivity/source/sdbcx/VIndexColumn.cxx

Author: damjan
Date: Tue Sep 19 02:02:42 2017
New Revision: 1808809

URL: http://svn.apache.org/viewvc?rev=1808809&view=rev
Log:
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


Modified:
    openoffice/trunk/main/connectivity/source/sdbcx/VIndexColumn.cxx

Modified: openoffice/trunk/main/connectivity/source/sdbcx/VIndexColumn.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/connectivity/source/sdbcx/VIndexColumn.cxx?rev=1808809&r1=1808808&r2=1808809&view=diff
==============================================================================
--- openoffice/trunk/main/connectivity/source/sdbcx/VIndexColumn.cxx (original)
+++ openoffice/trunk/main/connectivity/source/sdbcx/VIndexColumn.cxx Tue Sep 19 02:02:42 2017
@@ -35,16 +35,16 @@ using namespace ::com::sun::star::uno;
 {
 	if(isNew())
 		return ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VIndexColumnDescription");
-	return ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VIndex");
+	return ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VIndexColumn");
 }
 // -----------------------------------------------------------------------------
 ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL OIndexColumn::getSupportedServiceNames(  ) throw(::com::sun::star::uno::RuntimeException)
 {
 	::com::sun::star::uno::Sequence< ::rtl::OUString > aSupported(1);
 	if(isNew())
-		aSupported[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.IndexDescription");
+		aSupported[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.IndexColumnDescription");
 	else
-		aSupported[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.Index");
+		aSupported[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.IndexColumn");
 
 	return aSupported;
 }