diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-04-28 22:56:09 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-04-28 23:00:55 -0400 |
commit | ce0228af2da5cea2accb91c3ca770cbe01005bab (patch) | |
tree | c206c75b339ba79f5d2336812e6b8d52dc571758 /sc | |
parent | e4a886f657723040ba10a0ce0101f14763f5605a (diff) |
Make these non inline.
Change-Id: Icfed6fa13a04eb9b2006296421d52c566635ac33
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/document.hxx | 4 | ||||
-rw-r--r-- | sc/source/core/data/documen2.cxx | 10 |
2 files changed, 12 insertions, 2 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index f16b29260c1d..f86bddac985e 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -1956,8 +1956,8 @@ public: return *pRecursionHelper; } bool IsInDtorClear() const { return bInDtorClear; } - void SetExpandRefs( bool bVal ) { bExpandRefs = bVal; } - bool IsExpandRefs() { return bExpandRefs; } + void SetExpandRefs( bool bVal ); + bool IsExpandRefs() const; sal_uLong GetXMLImportedFormulaCount() const { return nXMLImportedFormulaCount; } void IncXMLImportedFormulaCount( sal_uLong nVal ) diff --git a/sc/source/core/data/documen2.cxx b/sc/source/core/data/documen2.cxx index 20b38f6b42d9..28f3ca7625d8 100644 --- a/sc/source/core/data/documen2.cxx +++ b/sc/source/core/data/documen2.cxx @@ -364,6 +364,16 @@ IMPL_LINK_NOARG(ScDocument, TrackTimeHdl) return 0; } +void ScDocument::SetExpandRefs( bool bVal ) +{ + bExpandRefs = bVal; +} + +bool ScDocument::IsExpandRefs() const +{ + return bExpandRefs; +} + void ScDocument::StartTrackTimer() { if (!aTrackTimer.IsActive()) // nicht ewig aufschieben |