summaryrefslogtreecommitdiff
path: root/writerfilter/source/rtftok/rtfdispatchsymbol.cxx
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/rtfdispatchsymbol.cxx
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/rtfdispatchsymbol.cxx')
-rw-r--r--writerfilter/source/rtftok/rtfdispatchsymbol.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/writerfilter/source/rtftok/rtfdispatchsymbol.cxx b/writerfilter/source/rtftok/rtfdispatchsymbol.cxx
index 5faa9a831fde..989bf48829a9 100644
--- a/writerfilter/source/rtftok/rtfdispatchsymbol.cxx
+++ b/writerfilter/source/rtftok/rtfdispatchsymbol.cxx
@@ -182,10 +182,10 @@ RTFError RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword)
if (m_bNeedPap)
{
// There were no runs in the cell, so we need to send paragraph and character properties here.
- auto pPValue = new RTFValue(m_aStates.top().aParagraphAttributes,
- m_aStates.top().aParagraphSprms);
+ auto pPValue = new RTFValue(m_aStates.top().getParagraphAttributes(),
+ m_aStates.top().getParagraphSprms());
bufferProperties(m_aTableBufferStack.back(), pPValue, nullptr);
- auto pCValue = new RTFValue(m_aStates.top().aCharacterAttributes,
+ auto pCValue = new RTFValue(m_aStates.top().getCharacterAttributes(),
m_aStates.top().aCharacterSprms);
bufferProperties(m_aTableBufferStack.back(), pCValue, nullptr);
}