diff options
Diffstat (limited to 'sw/inc/doc.hxx')
-rw-r--r-- | sw/inc/doc.hxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index e9b3be56b8dc..412b419edbb1 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -79,6 +79,7 @@ class SwAutoCompleteWord; class SwAutoCorrExceptWord; class SwCalc; class SwCellFrame; +class SwCellStyleTable; class SwCharFormat; class SwCharFormats; class SwConditionTextFormatColl; @@ -344,7 +345,8 @@ class SW_DLLPUBLIC SwDoc : /// Table styles (autoformats that are applied with table changes). std::unique_ptr<SwTableAutoFormatTable> mpTableStyles; - + /// Cell Styles not assigned to a Table Style + std::unique_ptr<SwCellStyleTable> mpCellStyles; private: ::std::unique_ptr< ::sfx2::IXmlIdRegistry > m_pXmlIdRegistry; @@ -1255,6 +1257,9 @@ public: SwTableAutoFormatTable& GetTableStyles() { return *mpTableStyles.get(); } const SwTableAutoFormatTable& GetTableStyles() const { return *mpTableStyles.get(); } + const SwCellStyleTable& GetCellStyles() const { return *mpCellStyles.get(); } + SwCellStyleTable& GetCellStyles() { return *mpCellStyles.get(); } + void AppendUndoForInsertFromDB( const SwPaM& rPam, bool bIsTable ); bool SetColRowWidthHeight( SwTableBox& rAktBox, sal_uInt16 eType, |