diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2013-11-02 16:52:26 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-11-04 10:28:31 -0600 |
commit | 659bc507925aadc189495e59d58cffb882dba381 (patch) | |
tree | 6720831a79a15c76ad796b75b79b77c73b42364c /sc | |
parent | 7e4f8eb5eff642c7fc8bfa665289d55a1c5b054b (diff) |
fdo#71128 arguments of calc function MMULT have same name
Arguments 1 and 2 of MMULT have the same name in the function
wizard, which is both confusing for the user and inconstent
with other argument names for matrix functions.
Patch simply changes the names to match the description of
the arguments of MMULT.
Change-Id: I9fc35907133aa61248182bd3b253a7f90ba7cd2c
Reviewed-on: https://gerrit.libreoffice.org/6526
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/src/scfuncs.src | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/src/scfuncs.src b/sc/source/ui/src/scfuncs.src index 0ee26ce4439f..18b6b79cfe37 100644 --- a/sc/source/ui/src/scfuncs.src +++ b/sc/source/ui/src/scfuncs.src @@ -4484,7 +4484,7 @@ Resource RID_SC_FUNCTION_DESCRIPTIONS1 }; String 2 // Name of Parameter 1 { - Text [ en-US ] = "array" ; + Text [ en-US ] = "array_1" ; }; String 3 // Description of Parameter 1 { @@ -4492,7 +4492,7 @@ Resource RID_SC_FUNCTION_DESCRIPTIONS1 }; String 4 // Name of Parameter 2 { - Text [ en-US ] = "array" ; + Text [ en-US ] = "array_2" ; }; String 5 // Description of Parameter 2 { |