From 61e9a25ac48b7cd3a93db8f879340252436a4076 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Mon, 20 Jun 2011 00:22:07 +0900 Subject: [PATCH] fdo#37341 increse the maximum number of recursion --- sc/source/core/data/cell.cxx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sc/source/core/data/cell.cxx b/sc/source/core/data/cell.cxx index 5374f94..820e87e 100644 --- a/sc/source/core/data/cell.cxx +++ b/sc/source/core/data/cell.cxx @@ -66,7 +66,7 @@ using namespace formula; // hand, if the value fits all recursions, execution is quicker as no resumes // are necessary. Could be made a configurable option. // Allow for a year's calendar (366). -const sal_uInt16 MAXRECURSION = 400; +const sal_uInt16 MAXRECURSION = 1000; // STATIC DATA ----------------------------------------------------------- -- 1.7.2.5