diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-12-18 23:51:27 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-12-19 15:33:08 -0500 |
commit | a17794d5fa8d6757a1f3caff7d9428720c0a357e (patch) | |
tree | c464d7acc38cf9f5190234b85203d2492d81f938 /sc/inc/document.hxx | |
parent | ec5aea8ceddc6701234c7d9b68160b6998be3633 (diff) |
Switch away from using the sfx2 link manager for data stream.
Change-Id: I05ac5a8151135ace7f4e351cfedab0170c8d9a57
Diffstat (limited to 'sc/inc/document.hxx')
-rw-r--r-- | sc/inc/document.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index 74d9cd1a9d71..8d528301fb01 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -70,6 +70,7 @@ class EditTextIterator; struct NoteEntry; struct FormulaGroupContext; class DocumentStreamAccess; +class DocumentLinkManager; } @@ -259,6 +260,7 @@ private: boost::scoped_ptr<svl::SharedStringPool> mpCellStringPool; boost::scoped_ptr<sc::FormulaGroupContext> mpFormulaGroupCxt; + mutable boost::scoped_ptr<sc::DocumentLinkManager> mpDocLinkMgr; SfxUndoManager* mpUndoManager; ScFieldEditEngine* pEditEngine; // uses pEditPool from xPoolHelper @@ -480,6 +482,9 @@ public: SC_DLLPUBLIC sfx2::LinkManager* GetLinkManager() const; + sc::DocumentLinkManager& GetDocLinkManager(); + const sc::DocumentLinkManager& GetDocLinkManager() const; + SC_DLLPUBLIC const ScDocOptions& GetDocOptions() const; SC_DLLPUBLIC void SetDocOptions( const ScDocOptions& rOpt ); SC_DLLPUBLIC const ScViewOptions& GetViewOptions() const; |