[Libreoffice-commits] core.git: connectivity/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Sun Aug 23 18:16:32 UTC 2020
connectivity/source/drivers/dbase/DTable.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit a939013f54c60545f2fc31defb5889ad527f051c
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sat Aug 22 18:37:47 2020 +0200
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sun Aug 23 20:15:56 2020 +0200
Fix typo in code
Change-Id: I40897e88fba67ea845578e0db7782c20a4f17806
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101196
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/connectivity/source/drivers/dbase/DTable.cxx b/connectivity/source/drivers/dbase/DTable.cxx
index 7ad53b04c97d..879a23f8a3f4 100644
--- a/connectivity/source/drivers/dbase/DTable.cxx
+++ b/connectivity/source/drivers/dbase/DTable.cxx
@@ -2271,13 +2271,13 @@ void SAL_CALL ODbaseTable::rename( const OUString& newName )
}
namespace
{
- void renameFile(file::OConnection const * _pConenction,const OUString& oldName,
+ void renameFile(file::OConnection const * _pConnection,const OUString& oldName,
const OUString& newName,const OUString& _sExtension)
{
- OUString aName = ODbaseTable::getEntry(_pConenction,oldName);
+ OUString aName = ODbaseTable::getEntry(_pConnection,oldName);
if(aName.isEmpty())
{
- OUString aIdent = _pConenction->getContent()->getIdentifier()->getContentIdentifier();
+ OUString aIdent = _pConnection->getContent()->getIdentifier()->getContentIdentifier();
if ( aIdent.lastIndexOf('/') != (aIdent.getLength()-1) )
aIdent += "/";
aIdent += oldName;
More information about the Libreoffice-commits
mailing list