sw/source/uibase/dbui/dbmgr.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 2c6712b5fe7c0118d67887fa5d18affca8636c1b Author: Johnny_M <[email protected]> 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 <[email protected]> Reviewed-by: Markus Mohrhard <[email protected]> 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++; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
