connectivity/source/commontools/dbtools.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 32437e53a653c32c8f2e298e0a86fac086ae35f4 Author: Andrea Gelmini <[email protected]> AuthorDate: Sun Mar 10 00:30:46 2019 +0100 Commit: Julien Nabet <[email protected]> CommitDate: Sun Mar 10 08:03:31 2019 +0100 Fix typo Change-Id: Id92be196bd4a6a061ef7985d8a07ab0be4523a0f Reviewed-on: https://gerrit.libreoffice.org/68986 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/connectivity/source/commontools/dbtools.cxx b/connectivity/source/commontools/dbtools.cxx index af71cb431ed1..1deb2a73b6d1 100644 --- a/connectivity/source/commontools/dbtools.cxx +++ b/connectivity/source/commontools/dbtools.cxx @@ -847,7 +847,7 @@ void qualifiedNameComponents(const Reference< XDatabaseMetaData >& _rxConnMetaDa OUString sSeparator = _rxConnMetaData->getCatalogSeparator(); OUString sName(_rQualifiedName); - // do we have catalogs ? + // do we have catalogs? if ( aNameComps.bCatalogs ) { if (_rxConnMetaData->isCatalogAtStart()) @@ -862,7 +862,7 @@ void qualifiedNameComponents(const Reference< XDatabaseMetaData >& _rxConnMetaDa } else { - // Catalogue name at the end + // Catalog name at the end sal_Int32 nIndex = sName.lastIndexOf(sSeparator); if (-1 != nIndex) { @@ -875,7 +875,7 @@ void qualifiedNameComponents(const Reference< XDatabaseMetaData >& _rxConnMetaDa if ( aNameComps.bSchemas ) { sal_Int32 nIndex = sName.indexOf('.'); - // OSL_ENSURE(-1 != nIndex, "QualifiedNameComponents : no schema separator!"); + // OSL_ENSURE(-1 != nIndex, "QualifiedNameComponents: no schema separator!"); if ( nIndex != -1 ) _rSchema = sName.copy(0, nIndex); sName = sName.copy(nIndex + 1); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
