summaryrefslogtreecommitdiff
path: root/writerfilter/source/rtftok/rtfdocumentimpl.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2019-05-17 21:45:02 +0200
committerMiklos Vajna <vmiklos@collabora.com>2019-05-20 10:07:01 +0200
commit0746d6e63aae646818b071c021276d13d3223cd8 (patch)
tree11685bd31ef3dded08de89e25a4228925ddd3fac /writerfilter/source/rtftok/rtfdocumentimpl.hxx
parent6090dcbdc64e8d950121aad62802d4bf056a70ec (diff)
writerfilter: make RTFParserState members private, part 8
Change-Id: I1e53b4282daa7ca1a5da4a8cec67a30516449b60 Reviewed-on: https://gerrit.libreoffice.org/72561 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'writerfilter/source/rtftok/rtfdocumentimpl.hxx')
-rw-r--r--writerfilter/source/rtftok/rtfdocumentimpl.hxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.hxx b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
index 853665cdefb9..62c1a520b6da 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.hxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
@@ -509,6 +509,9 @@ public:
RTFSprms& getTableRowSprms() { return m_aTableRowSprms; }
RTFSprms& getSectionAttributes() { return m_aSectionAttributes; }
RTFSprms& getSectionSprms() { return m_aSectionSprms; }
+ RTFSprms& getParagraphAttributes() { return m_aParagraphAttributes; }
+ RTFSprms& getParagraphSprms() { return m_aParagraphSprms; }
+ RTFSprms& getCharacterAttributes() { return m_aCharacterAttributes; }
RTFDocumentImpl* m_pDocumentImpl;
RTFInternalState nInternalState;
@@ -520,12 +523,12 @@ public:
RTFSprms aTableAttributes;
// reset by plain
RTFSprms aCharacterSprms;
- RTFSprms aCharacterAttributes;
- // reset by pard
- RTFSprms aParagraphSprms;
- RTFSprms aParagraphAttributes;
private:
+ RTFSprms m_aCharacterAttributes;
+ // reset by pard
+ RTFSprms m_aParagraphSprms;
+ RTFSprms m_aParagraphAttributes;
// reset by sectd
RTFSprms m_aSectionSprms;
RTFSprms m_aSectionAttributes;