diff options
author | Eike Rathke <erack@redhat.com> | 2016-07-15 13:16:07 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2016-07-15 13:44:09 +0200 |
commit | 24fe9e30d5b9c85da55c8f2ba85d0c3a50fa180a (patch) | |
tree | 38375b10cf677cf1ce9d1f3e107b1b7f23ff7c88 /sc | |
parent | ba3f703f01089361ac3ff3d2f231b17097c1d173 (diff) |
STYLE only one parameter required, two optional
Change-Id: Ifb0fa665a6ae3af03c307052a45bba5cf77b9208
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/xlformula.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/excel/xlformula.cxx b/sc/source/filter/excel/xlformula.cxx index 3ab465661f90..665dd94c78c8 100644 --- a/sc/source/filter/excel/xlformula.cxx +++ b/sc/source/filter/excel/xlformula.cxx @@ -622,8 +622,8 @@ static const XclFunctionInfo saFuncTable_OOoLO[] = EXC_FUNCENTRY_OOO_IBR( ocEasterSunday,1,1, 0, "EASTERSUNDAY" ), // was written wrongly, read it EXC_FUNCENTRY_OOO( ocCurrent, 0, 0, 0, "ORG.OPENOFFICE.CURRENT" ), EXC_FUNCENTRY_OOO_IBR( ocCurrent, 0, 0, 0, "CURRENT" ), // was written wrongly, read it - EXC_FUNCENTRY_OOO( ocStyle, 3, 3, 0, "ORG.OPENOFFICE.STYLE" ), - EXC_FUNCENTRY_OOO_IBR( ocStyle, 3, 3, 0, "STYLE" ), // was written wrongly, read it + EXC_FUNCENTRY_OOO( ocStyle, 1, 3, 0, "ORG.OPENOFFICE.STYLE" ), + EXC_FUNCENTRY_OOO_IBR( ocStyle, 1, 3, 0, "STYLE" ), // was written wrongly, read it EXC_FUNCENTRY_OOO( ocConvert, 3, 3, 0, "ORG.OPENOFFICE.CONVERT" ), EXC_FUNCENTRY_OOO( ocColor, 3, 4, 0, "ORG.LIBREOFFICE.COLOR" ), EXC_FUNCENTRY_OOO( ocRawSubtract, 2, MX, 0, "ORG.LIBREOFFICE.RAWSUBTRACT" ), |