Kaydet (Commit) 2c6712b5 authored tarafından Johnny_M's avatar Johnny_M Kaydeden (comit) Markus Mohrhard

Translate German variable names

Akt -> Current in dbmgr

Change-Id: Ia44fc1bb424703b417b46ad68f64aa6ffc3d6ccf
Reviewed-on: https://gerrit.libreoffice.org/49191Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMarkus Mohrhard <markus.mohrhard@googlemail.com>
üst f51ce842
...@@ -611,8 +611,8 @@ static OUString lcl_FindColumn(const OUString& sFormatStr,sal_uInt16 &nUsedPos ...@@ -611,8 +611,8 @@ static OUString lcl_FindColumn(const OUString& sFormatStr,sal_uInt16 &nUsedPos
nSeparator = 0xff; nSeparator = 0xff;
while(nUsedPos < nLen && nSeparator == 0xff) while(nUsedPos < nLen && nSeparator == 0xff)
{ {
sal_Unicode cAkt = sFormatStr[nUsedPos]; sal_Unicode cCurrent = sFormatStr[nUsedPos];
switch(cAkt) switch(cCurrent)
{ {
case ',': case ',':
nSeparator = DB_SEP_SPACE; nSeparator = DB_SEP_SPACE;
...@@ -627,7 +627,7 @@ static OUString lcl_FindColumn(const OUString& sFormatStr,sal_uInt16 &nUsedPos ...@@ -627,7 +627,7 @@ static OUString lcl_FindColumn(const OUString& sFormatStr,sal_uInt16 &nUsedPos
nSeparator = DB_SEP_NEWLINE; nSeparator = DB_SEP_NEWLINE;
break; break;
default: default:
sReturn += OUStringLiteral1(cAkt); sReturn += OUStringLiteral1(cCurrent);
} }
nUsedPos++; nUsedPos++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment