summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);