diff options
Diffstat (limited to 'sw/inc/doc.hxx')
-rw-r--r-- | sw/inc/doc.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index 77a045880e3b..8f8d1e7847ea 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -334,6 +334,7 @@ class SW_DLLPUBLIC SwDoc : mutable std::unordered_map<OUString, SwNumRule *, OUStringHash> maNumRuleMap; SwUnoCrsrTable *mpUnoCrsrTable; + std::list< std::weak_ptr<SwUnoCrsr> > mvUnoCrsrTbl2; SwPagePreviewPrtData *mpPgPViewPrtData; //< Indenting / spacing for printing of page view. SwPaM *mpExtInputRing; @@ -1495,6 +1496,7 @@ public: // Uno - Interfaces const SwUnoCrsrTable& GetUnoCrsrTable() const { return *mpUnoCrsrTable; } SwUnoCrsr* CreateUnoCrsr( const SwPosition& rPos, bool bTableCrsr = false ); + std::shared_ptr<SwUnoCrsr> CreateUnoCrsr2( const SwPosition& rPos, bool bTableCrsr = false ); // FeShell - Interfaces // !!! These assume always an existing layout !!! |