summaryrefslogtreecommitdiff
path: root/sw/source/core/text/itratr.hxx
diff options
context:
space:
mode:
authorMichael Stahl <Michael.Stahl@cib.de>2018-10-12 16:31:31 +0200
committerMichael Stahl <Michael.Stahl@cib.de>2018-11-15 15:09:59 +0100
commitefb39f9a89ce314cc016614b2d295f35808373ea (patch)
tree090ee7411a361b266c9fc5d01f7c5afb477462c9 /sw/source/core/text/itratr.hxx
parente91cabea65a76d6b72890adf947fbe5c38cd9cfa (diff)
sw_redlinehide_3: fix SwAttrIter::SeekFwd()
This never called Rst() in the loops because the m_nPosition wasn't updated. Change-Id: I5a9cf47d9fe6d92bb7fccf255acbbd22f04b7f47
Diffstat (limited to 'sw/source/core/text/itratr.hxx')
-rw-r--r--sw/source/core/text/itratr.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/text/itratr.hxx b/sw/source/core/text/itratr.hxx
index 99741c87b965..959436609608 100644
--- a/sw/source/core/text/itratr.hxx
+++ b/sw/source/core/text/itratr.hxx
@@ -63,7 +63,7 @@ private:
const SwTextNode* m_pTextNode;
sw::MergedPara const* m_pMergedPara;
- void SeekFwd( const sal_Int32 nPos );
+ void SeekFwd(sal_Int32 nOldPos, sal_Int32 nNewPos);
void SetFnt( SwFont* pNew ) { m_pFont = pNew; }
void InitFontAndAttrHandler(SwTextNode const& rTextNode,
OUString const& rText, bool const* pbVertLayout);