summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-22 18:37:47 +0200
committerJulien Nabet <serval2412@yahoo.fr>2020-08-23 20:15:56 +0200
commita939013f54c60545f2fc31defb5889ad527f051c (patch)
treef6d880eb3b1ca55c465944726ec436484743486b /connectivity
parentbd6af4f36af2d8e855a45db96aa2006710739cad (diff)
Fix typo in code
Change-Id: I40897e88fba67ea845578e0db7782c20a4f17806 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101196 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/dbase/DTable.cxx6
1 files changed, 3 insertions, 3 deletions
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;