summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWinfried Donkers <winfrieddonkers@libreoffice.org>2014-02-14 17:54:20 +0100
committerKohei Yoshida <libreoffice@kohei.us>2014-02-14 21:30:41 +0000
commitf38aa72c1d8f9e535d2b5cefbb2af7f6f37b81a8 (patch)
treea9288cf716d7eb9347b58e73e286341647926342
parent44c407ed562a4a59077e86b4952837307418c93e (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. Change-Id: Ie493a77285360a099e5b07e8360ecb5c6c6c1aec Reviewed-on: https://gerrit.libreoffice.org/8052 Reviewed-by: Kohei Yoshida <libreoffice@kohei.us> Tested-by: Kohei Yoshida <libreoffice@kohei.us>
-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 3d709f82456e..9d1d70117b77 100644
--- a/sc/source/core/data/funcdesc.cxx
+++ b/sc/source/core/data/funcdesc.cxx
@@ -181,14 +181,14 @@ OUString ScFuncDesc::GetParamList() const
aSig.append(maDefArgNames[nFix]);
aSig.append('1');
- aSig.appendAscii( ", " );
+ aSig.append(sep);
aSig.append(maDefArgNames[nFix+1]);
aSig.append('1');
aSig.append(sep);
aSig.appendAscii( " " );
aSig.append(maDefArgNames[nFix]);
aSig.append('2');
- aSig.appendAscii( ", " );
+ aSig.append(sep);
aSig.append(maDefArgNames[nFix+1]);
aSig.append('2');
aSig.append(sep);