Author: damjan
Date: Tue Sep 19 02:16:41 2017
New Revision: 1808810

URL: http://svn.apache.org/viewvc?rev=1808810&view=rev
Log:
More naming errors. There are no "Descriptions" in the SDBCX module,
there are only "Descriptors".

Patch by: me

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

Modified: openoffice/trunk/main/connectivity/source/sdbcx/VColumn.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/connectivity/source/sdbcx/VColumn.cxx?rev=1808810&r1=1808809&r2=1808810&view=diff
==============================================================================
--- openoffice/trunk/main/connectivity/source/sdbcx/VColumn.cxx (original)
+++ openoffice/trunk/main/connectivity/source/sdbcx/VColumn.cxx Tue Sep 19 
02:16:41 2017
@@ -42,7 +42,7 @@ using namespace ::com::sun::star::sdbc;
 ::rtl::OUString SAL_CALL OColumn::getImplementationName(  ) throw 
(::com::sun::star::uno::RuntimeException)
 {
        if(isNew())
-               return 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VColumnDescription");
+               return 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VColumnDescriptor");
        return ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VColumn");
 }
 // 
-----------------------------------------------------------------------------
@@ -50,7 +50,7 @@ using namespace ::com::sun::star::sdbc;
 {
        ::com::sun::star::uno::Sequence< ::rtl::OUString > aSupported(1);
        if(isNew())
-               aSupported[0] = 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.ColumnDescription");
+               aSupported[0] = 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.ColumnDescriptor");
        else
                aSupported[0] = 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.Column");
 

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

Modified: openoffice/trunk/main/connectivity/source/sdbcx/VKey.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/connectivity/source/sdbcx/VKey.cxx?rev=1808810&r1=1808809&r2=1808810&view=diff
==============================================================================
--- openoffice/trunk/main/connectivity/source/sdbcx/VKey.cxx (original)
+++ openoffice/trunk/main/connectivity/source/sdbcx/VKey.cxx Tue Sep 19 
02:16:41 2017
@@ -46,7 +46,7 @@ using namespace ::com::sun::star::lang;
 ::rtl::OUString SAL_CALL OKey::getImplementationName(  ) throw 
(::com::sun::star::uno::RuntimeException)
 {
        if(isNew())
-               return 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VKeyDescription");
+               return 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VKeyDescriptor");
        return ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VKey");
 }
 // 
-----------------------------------------------------------------------------
@@ -54,7 +54,7 @@ using namespace ::com::sun::star::lang;
 {
        ::com::sun::star::uno::Sequence< ::rtl::OUString > aSupported(1);
        if(isNew())
-               aSupported[0] = 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.KeyDescription");
+               aSupported[0] = 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.KeyDescriptor");
        else
                aSupported[0] = 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.Key");
 

Modified: openoffice/trunk/main/connectivity/source/sdbcx/VKeyColumn.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/connectivity/source/sdbcx/VKeyColumn.cxx?rev=1808810&r1=1808809&r2=1808810&view=diff
==============================================================================
--- openoffice/trunk/main/connectivity/source/sdbcx/VKeyColumn.cxx (original)
+++ openoffice/trunk/main/connectivity/source/sdbcx/VKeyColumn.cxx Tue Sep 19 
02:16:41 2017
@@ -35,7 +35,7 @@ using namespace cppu;
 ::rtl::OUString SAL_CALL OKeyColumn::getImplementationName(  ) throw 
(::com::sun::star::uno::RuntimeException)
 {
        if(isNew())
-               return 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VKeyColumnDescription");
+               return 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VKeyColumnDescriptor");
        return 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.VKeyColumn");
 }
 // 
-----------------------------------------------------------------------------
@@ -43,7 +43,7 @@ using namespace cppu;
 {
        ::com::sun::star::uno::Sequence< ::rtl::OUString > aSupported(1);
        if(isNew())
-               aSupported[0] = 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.KeyColumnDescription");
+               aSupported[0] = 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.KeyColumnDescriptor");
        else
                aSupported[0] = 
::rtl::OUString::createFromAscii("com.sun.star.sdbcx.KeyColumn");
 


Reply via email to