sc/source/core/data/funcdesc.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9d0f9c199b8875d2d185c1848d4d5cfaff7cf260
Author:     Eike Rathke <er...@redhat.com>
AuthorDate: Mon Oct 24 15:13:22 2022 +0200
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Mon Oct 24 22:15:26 2022 +0200

    Resolves: tdf#140554 Function Wizard, FIXED() second parameter is optional
    
    Change-Id: I1d559601f0cace4719aa6f8adc4e4230494e905d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141766
    Reviewed-by: Eike Rathke <er...@redhat.com>
    Tested-by: Jenkins
    (cherry picked from commit 633db8a099e3041bc10fb1709311bd6055ab61a2)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141744
    Reviewed-by: Caolán McNamara <caol...@redhat.com>

diff --git a/sc/source/core/data/funcdesc.cxx b/sc/source/core/data/funcdesc.cxx
index 1fa47a5db718..060cda7a5f6d 100644
--- a/sc/source/core/data/funcdesc.cxx
+++ b/sc/source/core/data/funcdesc.cxx
@@ -602,7 +602,7 @@ ScFunctionList::ScFunctionList( bool bEnglishFunctionNames )
         { SC_OPCODE_AREAS, ENTRY(SC_OPCODE_AREAS_ARY), 0, 
ID_FUNCTION_GRP_TABLE, HID_FUNC_BEREICHE, 1, { 0 }, 0 },
         { SC_OPCODE_CURRENCY, ENTRY(SC_OPCODE_CURRENCY_ARY), 0, 
ID_FUNCTION_GRP_TEXT, HID_FUNC_DM, 2, { 0, 1 }, 0 },
         { SC_OPCODE_REPLACE, ENTRY(SC_OPCODE_REPLACE_ARY), 0, 
ID_FUNCTION_GRP_TEXT, HID_FUNC_ERSETZEN, 4, { 0, 0, 0, 0 }, 0 },
-        { SC_OPCODE_FIXED, ENTRY(SC_OPCODE_FIXED_ARY), 0, 
ID_FUNCTION_GRP_TEXT, HID_FUNC_FEST, 3, { 0, 0, 1 }, 0 },
+        { SC_OPCODE_FIXED, ENTRY(SC_OPCODE_FIXED_ARY), 0, 
ID_FUNCTION_GRP_TEXT, HID_FUNC_FEST, 3, { 0, 1, 1 }, 0 },
         { SC_OPCODE_FIND, ENTRY(SC_OPCODE_FIND_ARY), 0, ID_FUNCTION_GRP_TEXT, 
HID_FUNC_FINDEN, 3, { 0, 0, 1 }, 0 },
         { SC_OPCODE_EXACT, ENTRY(SC_OPCODE_EXACT_ARY), 0, 
ID_FUNCTION_GRP_TEXT, HID_FUNC_IDENTISCH, 2, { 0, 0 }, 0 },
         { SC_OPCODE_LEFT, ENTRY(SC_OPCODE_LEFT_ARY), 0, ID_FUNCTION_GRP_TEXT, 
HID_FUNC_LINKS, 2, { 0, 1 }, 0 },

Reply via email to