summaryrefslogtreecommitdiff
path: root/sw/source/core/text/txtfrm.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2020-01-20 09:08:33 +0100
committerMiklos Vajna <vmiklos@collabora.com>2020-01-20 09:57:23 +0100
commit71088fb7c7b8e0af37919fc53223203d8a560842 (patch)
tree1b9d90c4ab2b3fc0e7972cd215c8d701fd3d00f0 /sw/source/core/text/txtfrm.cxx
parenta0464b6321c5824a9f76c7c8689bbedc846ef032 (diff)
sw: prefix members of SwEndNoteInfo and SwFootnoteInfo
Change-Id: Ie952701e6cb65cb0d5789b4f98005872286a41ae Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87052 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/core/text/txtfrm.cxx')
-rw-r--r--sw/source/core/text/txtfrm.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/text/txtfrm.cxx b/sw/source/core/text/txtfrm.cxx
index 973b7a86c4a7..06bccb92c5ae 100644
--- a/sw/source/core/text/txtfrm.cxx
+++ b/sw/source/core/text/txtfrm.cxx
@@ -2683,13 +2683,13 @@ static bool lcl_ErgoVadis(SwTextFrame* pFrame, TextFrameIndex & rPos, const Prep
const SwFootnoteInfo &rFootnoteInfo = pFrame->GetDoc().GetFootnoteInfo();
if( ePrep == PrepareHint::ErgoSum )
{
- if( rFootnoteInfo.aErgoSum.isEmpty() )
+ if( rFootnoteInfo.m_aErgoSum.isEmpty() )
return false;
rPos = pFrame->GetOfst();
}
else
{
- if( rFootnoteInfo.aQuoVadis.isEmpty() )
+ if( rFootnoteInfo.m_aQuoVadis.isEmpty() )
return false;
if( pFrame->HasFollow() )
rPos = pFrame->GetFollow()->GetOfst();
@@ -2832,7 +2832,7 @@ bool SwTextFrame::Prepare( const PrepareHint ePrep, const void* pVoid,
// We're the last Footnote; we need to update the
// QuoVadis texts now
const SwFootnoteInfo &rFootnoteInfo = GetDoc().GetFootnoteInfo();
- if( !pPara->UpdateQuoVadis( rFootnoteInfo.aQuoVadis ) )
+ if( !pPara->UpdateQuoVadis( rFootnoteInfo.m_aQuoVadis ) )
{
TextFrameIndex nPos = pPara->GetParLen();
if( nPos )