summaryrefslogtreecommitdiff
path: root/sc/source/ui/miscdlgs
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-05-14 11:31:33 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-05-14 13:15:11 -0400
commita921d38ad4ee087355945b9a544d1957987f308f (patch)
tree800f7490741c7f7bb7ca06915b32d33338a12fea /sc/source/ui/miscdlgs
parent69a7e7440cdafbaeddd344f61cc5dfe54750d509 (diff)
No more SetCompileForFAP(). Use respective flag setting methods instead.
Change-Id: Ib2256ebac8a7e63e7e24fb35d13d47b811bd8e19
Diffstat (limited to 'sc/source/ui/miscdlgs')
-rw-r--r--sc/source/ui/miscdlgs/anyrefdg.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/ui/miscdlgs/anyrefdg.cxx b/sc/source/ui/miscdlgs/anyrefdg.cxx
index 5b435f0f8f57..7e226366a556 100644
--- a/sc/source/ui/miscdlgs/anyrefdg.cxx
+++ b/sc/source/ui/miscdlgs/anyrefdg.cxx
@@ -323,7 +323,8 @@ void ScFormulaReferenceHelper::Init()
pRefComp.reset( new ScCompiler( pDoc, aCursorPos) );
pRefComp->SetGrammar( pDoc->GetGrammar() );
- pRefComp->SetCompileForFAP(true);
+ pRefComp->EnableJumpCommandReorder(false);
+ pRefComp->EnableStopOnError(false);
nRefTab = nTab;
}