[Libreoffice-commits] core.git: sw/source
Johnny_M
klasse at partyheld.de
Mon Feb 5 08:54:40 UTC 2018
sw/source/uibase/dbui/dbmgr.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 2c6712b5fe7c0118d67887fa5d18affca8636c1b
Author: Johnny_M <klasse at partyheld.de>
Date: Sat Feb 3 23:25:09 2018 +0100
Translate German variable names
Akt -> Current in dbmgr
Change-Id: Ia44fc1bb424703b417b46ad68f64aa6ffc3d6ccf
Reviewed-on: https://gerrit.libreoffice.org/49191
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
diff --git a/sw/source/uibase/dbui/dbmgr.cxx b/sw/source/uibase/dbui/dbmgr.cxx
index 43f6451fa1ef..225dbc2c50b0 100644
--- a/sw/source/uibase/dbui/dbmgr.cxx
+++ b/sw/source/uibase/dbui/dbmgr.cxx
@@ -611,8 +611,8 @@ static OUString lcl_FindColumn(const OUString& sFormatStr,sal_uInt16 &nUsedPos
nSeparator = 0xff;
while(nUsedPos < nLen && nSeparator == 0xff)
{
- sal_Unicode cAkt = sFormatStr[nUsedPos];
- switch(cAkt)
+ sal_Unicode cCurrent = sFormatStr[nUsedPos];
+ switch(cCurrent)
{
case ',':
nSeparator = DB_SEP_SPACE;
@@ -627,7 +627,7 @@ static OUString lcl_FindColumn(const OUString& sFormatStr,sal_uInt16 &nUsedPos
nSeparator = DB_SEP_NEWLINE;
break;
default:
- sReturn += OUStringLiteral1(cAkt);
+ sReturn += OUStringLiteral1(cCurrent);
}
nUsedPos++;
More information about the Libreoffice-commits
mailing list