summaryrefslogtreecommitdiff
path: root/sc/inc/document.hxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-10-04 16:55:59 +0300
committerDennis Francis <dennis.francis@collabora.co.uk>2017-11-21 13:49:52 +0530
commitd07638341eade68eae61aa495cb5998c7102327a (patch)
tree225358ed0462e25e591d9d8c814e553074050d41 /sc/inc/document.hxx
parent6147ba802ac891910c7404c697b0e9f57f0a44d4 (diff)
Move ScDocument::GetNonThreadedContext() inline
Did not have any impact on performance, though. Change-Id: I7e769b4a74e0ff9e0aabfb7e291fc4b987441954
Diffstat (limited to 'sc/inc/document.hxx')
-rw-r--r--sc/inc/document.hxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index f37e8e7d856e..8b138378dda3 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -560,7 +560,11 @@ public:
SC_DLLPUBLIC void InitDrawLayer( SfxObjectShell* pDocShell = nullptr );
- SC_DLLPUBLIC ScInterpreterContext GetNonThreadedContext() const;
+ ScInterpreterContext GetNonThreadedContext() const
+ {
+ // GetFormatTable() asserts that we are not in a threaded calculation
+ return ScInterpreterContext(*this, GetFormatTable());
+ }
SC_DLLPUBLIC sfx2::LinkManager* GetLinkManager();
SC_DLLPUBLIC const sfx2::LinkManager* GetLinkManager() const;