diff options
Diffstat (limited to 'connectivity/source/drivers/dbase/DIndex.cxx')
-rw-r--r-- | connectivity/source/drivers/dbase/DIndex.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/dbase/DIndex.cxx b/connectivity/source/drivers/dbase/DIndex.cxx index 4063c79576bb..0c80d1c82a59 100644 --- a/connectivity/source/drivers/dbase/DIndex.cxx +++ b/connectivity/source/drivers/dbase/DIndex.cxx @@ -36,7 +36,7 @@ #include <comphelper/types.hxx> #include <connectivity/dbexception.hxx> #include "dbase/DResultSet.hxx" -#include "resource/dbase_res.hrc" +#include "strings.hrc" #include <unotools/sharedunocomponent.hxx> using namespace ::comphelper; @@ -475,12 +475,12 @@ bool ODbaseIndex::DropImpl() return true; } -void ODbaseIndex::impl_killFileAndthrowError_throw(sal_uInt16 _nErrorId,const OUString& _sFile) +void ODbaseIndex::impl_killFileAndthrowError_throw(const char* pErrorId, const OUString& _sFile) { closeImpl(); if(UCBContentHelper::Exists(_sFile)) UCBContentHelper::Kill(_sFile); - m_pTable->getConnection()->throwGenericSQLException(_nErrorId,*this); + m_pTable->getConnection()->throwGenericSQLException(pErrorId, *this); } bool ODbaseIndex::CreateImpl() |