diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-03-25 11:03:09 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-03-25 12:11:42 +0100 |
commit | 4759ed1e5dec9c2bbabeaeebb1a330293b021a24 (patch) | |
tree | 71478bec89255c1be4570a11278ada5cfa2b3d33 /connectivity/source | |
parent | 8a859cdecdd49e186b95a051ee31756770d50e9c (diff) |
fix connectivity build
since...
commit a0656ec6fc2b41e65f1b40dbd64f546175e2762f
Date: Thu Mar 25 09:53:33 2021 +0300
const OUString -> const OUStringLiteral
Mostly automated rewrite
Change-Id: Id15273edde05933927378e45baadebc0727d558e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113083
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx b/connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx index d677c4fe9ae7..ead76b086ce5 100644 --- a/connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx +++ b/connectivity/source/drivers/evoab2/NDatabaseMetaData.cxx @@ -1140,7 +1140,7 @@ Reference< XResultSet > SAL_CALL OEvoabDatabaseMetaData::getTables( ORowSetValueDecoratorRef(), ORowSetValueDecoratorRef(), new ORowSetValueDecorator(aHumanName), //tablename - new ORowSetValueDecorator(aTable), + new ORowSetValueDecorator(ORowSetValue(aTable)), new ORowSetValueDecorator(aUID)}; //comment //I'd prefer to swap the comment and the human name and //just use e_source_registry_ref_source(get_e_source_registry(), aUID); @@ -1195,7 +1195,7 @@ Reference< XResultSet > SAL_CALL OEvoabDatabaseMetaData::getTables( ORowSetValueDecoratorRef(), ORowSetValueDecoratorRef(), new ORowSetValueDecorator(aName), - new ORowSetValueDecorator(aTable), + new ORowSetValueDecorator(ORowSetValue(aTable)), ODatabaseMetaDataResultSet::getEmptyValue()}; aRows.push_back(aRow); } |