Kaydet (Commit) 77fcd7c8 authored tarafından Eike Rathke's avatar Eike Rathke

Remove artificial parameter count limit from GRETPIVOTDATA()

Change-Id: I28fd0398fa7c8a45e8b372c79955f20eb3ff8c99
üst 2a1a9603
......@@ -3551,7 +3551,7 @@ void ScInterpreter::ScGetPivotData()
{
sal_uInt8 nParamCount = GetByte();
if (!MustHaveParamCount(nParamCount, 2, 30) || (nParamCount % 2) == 1)
if (!MustHaveParamCountMin(nParamCount, 2) || (nParamCount % 2) == 1)
{
PushError(FormulaError::NoRef);
return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment