From 4b0ce4aa1d87c9f65fd7d46be53eef5a5669b88f Mon Sep 17 00:00:00 2001 From: Winfried Donkers Date: Fri, 14 Feb 2014 17:54:20 +0100 Subject: fdo#73800 fix incorrect separator in function description in Calc Depending on locale, the function description with arguments did show incorrect separator(s) for functions with PAIRED_VAR_ARGS. Reviewed-on: https://gerrit.libreoffice.org/8052 Reviewed-by: Kohei Yoshida Tested-by: Kohei Yoshida (cherry picked from commit f38aa72c1d8f9e535d2b5cefbb2af7f6f37b81a8) Conflicts: sc/source/core/data/funcdesc.cxx Reviewed-on: https://gerrit.libreoffice.org/8057 Tested-by: Kohei Yoshida Reviewed-by: Kohei Yoshida Conflicts: sc/source/core/data/funcdesc.cxx Change-Id: Ie493a77285360a099e5b07e8360ecb5c6c6c1aec Reviewed-on: https://gerrit.libreoffice.org/8059 Reviewed-by: Kohei Yoshida Tested-by: Kohei Yoshida --- sc/source/core/data/funcdesc.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sc/source/core/data/funcdesc.cxx b/sc/source/core/data/funcdesc.cxx index b6691c650da0..22ae5be0246c 100644 --- a/sc/source/core/data/funcdesc.cxx +++ b/sc/source/core/data/funcdesc.cxx @@ -190,14 +190,14 @@ OUString ScFuncDesc::GetParamList() const aSig.append(*(ppDefArgNames[nFix])); aSig.append(sal_Unicode('1')); - aSig.appendAscii( ", " ); + aSig.append(sep); aSig.append(*(ppDefArgNames[nFix+1])); aSig.append(sal_Unicode('1')); aSig.append(sep); aSig.appendAscii( " " ); aSig.append(*(ppDefArgNames[nFix])); aSig.append(sal_Unicode('2')); - aSig.appendAscii( ", " ); + aSig.append(sep); aSig.append(*(ppDefArgNames[nFix+1])); aSig.append(sal_Unicode('2')); aSig.append(sep); -- cgit v1.2.3