summaryrefslogtreecommitdiffstats
path: root/sc/inc/recursionhelper.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2012-04-09 21:40:08 -0400
committerKohei Yoshida <kohei.yoshida@suse.com>2012-04-09 21:45:58 -0400
commit4be657d53281680ebfa72e96b93705599f4178e1 (patch)
treed951b69131ebfb2747dc11ac4435d84a42c8600a /sc/inc/recursionhelper.hxx
parentMake non-trivial methods non in-line. (diff)
downloadcore-4be657d53281680ebfa72e96b93705599f4178e1.tar.gz
core-4be657d53281680ebfa72e96b93705599f4178e1.zip
Removed duplicated methods.
Diffstat (limited to 'sc/inc/recursionhelper.hxx')
-rw-r--r--sc/inc/recursionhelper.hxx12
1 files changed, 2 insertions, 10 deletions
diff --git a/sc/inc/recursionhelper.hxx b/sc/inc/recursionhelper.hxx
index 176a93d61501..f2a258d153b9 100644
--- a/sc/inc/recursionhelper.hxx
+++ b/sc/inc/recursionhelper.hxx
@@ -83,14 +83,6 @@ public:
void Insert( ScFormulaCell* p, bool bOldRunning, const ScFormulaResult & rRes );
- ScFormulaRecursionList::iterator GetStart()
- {
- return aRecursionFormulas.begin();
- }
- ScFormulaRecursionList::iterator GetEnd()
- {
- return aRecursionFormulas.end();
- }
bool IsInIterationReturn() const { return bInIterationReturn; }
void SetInIterationReturn( bool b );
bool IsDoingIteration() const { return nIteration > 0; }
@@ -102,8 +94,8 @@ public:
void EndIteration();
ScFormulaRecursionList::iterator GetLastIterationStart() { return aLastIterationStart; }
- ScFormulaRecursionList::iterator GetIterationStart() { return GetStart(); }
- ScFormulaRecursionList::iterator GetIterationEnd() { return GetEnd(); }
+ ScFormulaRecursionList::iterator GetIterationStart();
+ ScFormulaRecursionList::iterator GetIterationEnd();
/** Any return, recursion or iteration, iteration is always coupled with
recursion. */
bool IsInReturn() const { return bInRecursionReturn; }