summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWinfried Donkers <winfrieddonkers@libreoffice.org>2014-02-14 17:54:20 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2014-02-18 15:03:52 +0100
commit714f11420bbe5c5721848cb41dbf7c2cd2116c46 (patch)
tree2e90a806a10d60a87041b84d9095586303c5f663
parent3232b29c4ca79724b04586e161c3a1938bf25f07 (diff)
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 <libreoffice@kohei.us> Tested-by: Kohei Yoshida <libreoffice@kohei.us> (cherry picked from commit f38aa72c1d8f9e535d2b5cefbb2af7f6f37b81a8) Conflicts: sc/source/core/data/funcdesc.cxx Change-Id: Ie493a77285360a099e5b07e8360ecb5c6c6c1aec Reviewed-on: https://gerrit.libreoffice.org/8058 Reviewed-by: Kohei Yoshida <libreoffice@kohei.us> Tested-by: Kohei Yoshida <libreoffice@kohei.us> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Reviewed-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r--sc/source/core/data/funcdesc.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/funcdesc.cxx b/sc/source/core/data/funcdesc.cxx
index 66c323485769..efabf41a3457 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('1');
- aSig.appendAscii( ", " );
+ aSig.append(sep);
aSig.append(*(ppDefArgNames[nFix+1]));
aSig.append('1');
aSig.append(sep);
aSig.appendAscii( " " );
aSig.append(*(ppDefArgNames[nFix]));
aSig.append('2');
- aSig.appendAscii( ", " );
+ aSig.append(sep);
aSig.append(*(ppDefArgNames[nFix+1]));
aSig.append('2');
aSig.append(sep);