summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2017-11-11 15:10:18 +0100
committerJens Carl <j.carl43@gmx.de>2017-11-14 08:24:32 +0100
commit97b5b99d715733dde6c0e8ed59b3f16236a7fff1 (patch)
treea8c691e2c4ba03ec8fc2bfc13e7f6c52d219c6c1 /connectivity
parent2796b7e298b7c536a87fdf9502e1a6093a041e93 (diff)
Translate German debug strings
Change-Id: If4da1df3f7889d2b579fcde4fec5ac3c82026555 Reviewed-on: https://gerrit.libreoffice.org/44627 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/dbase/DTable.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/dbase/DTable.cxx b/connectivity/source/drivers/dbase/DTable.cxx
index 10372b44a13c..116c47b56d60 100644
--- a/connectivity/source/drivers/dbase/DTable.cxx
+++ b/connectivity/source/drivers/dbase/DTable.cxx
@@ -2586,7 +2586,7 @@ bool ODbaseTable::seekRow(IResultSetHelper::Movement eCursorPosition, sal_Int32
{
std::size_t nEntryLen = m_aHeader.recordLength;
- OSL_ENSURE(m_nFilePos >= 1,"SdbDBFCursor::FileFetchRow: ungueltige Record-Position");
+ OSL_ENSURE(m_nFilePos >= 1,"SdbDBFCursor::FileFetchRow: invalid record position");
std::size_t nPos = m_aHeader.headerLength + (std::size_t)(m_nFilePos-1) * nEntryLen;
m_pFileStream->Seek(nPos);
@@ -2728,7 +2728,7 @@ bool ODbaseTable::AllocBuffer()
bool ODbaseTable::WriteBuffer()
{
- OSL_ENSURE(m_nFilePos >= 1,"SdbDBFCursor::FileFetchRow: ungueltige Record-Position");
+ OSL_ENSURE(m_nFilePos >= 1,"SdbDBFCursor::FileFetchRow: invalid record position");
// position on desired record:
std::size_t nPos = m_aHeader.headerLength + (long)(m_nFilePos-1) * m_aHeader.recordLength;