Kaydet (Commit) 7d6a17e4 authored tarafından Damjan Jovanovic's avatar Damjan Jovanovic Kaydeden (comit) Caolán McNamara

More naming errors. There are no "Descriptions" in the SDBCX module,

there are only "Descriptors".

Patch by: me

(cherry picked from commit ccc4532f)

Change-Id: Ifd4f34c7b1ba64b449222dc864a38df80f4c6727
Reviewed-on: https://gerrit.libreoffice.org/42535Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst abb70f9d
......@@ -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";
......
......@@ -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;
......
......@@ -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";
......
......@@ -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";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment