summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlnumwriter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/html/htmlnumwriter.cxx')
-rw-r--r--sw/source/filter/html/htmlnumwriter.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/filter/html/htmlnumwriter.cxx b/sw/source/filter/html/htmlnumwriter.cxx
index 7d5c23b95379..dc21f1cbb0f2 100644
--- a/sw/source/filter/html/htmlnumwriter.cxx
+++ b/sw/source/filter/html/htmlnumwriter.cxx
@@ -48,12 +48,12 @@ void SwHTMLWriter::FillNextNumInfo()
{
m_pNextNumRuleInfo = nullptr;
- sal_uLong nPos = pCurPam->GetPoint()->nNode.GetIndex() + 1;
+ sal_uLong nPos = m_pCurrentPam->GetPoint()->nNode.GetIndex() + 1;
bool bTable = false;
do
{
- const SwNode* pNd = pDoc->GetNodes()[nPos];
+ const SwNode* pNd = m_pDoc->GetNodes()[nPos];
if( pNd->IsTextNode() )
{
m_pNextNumRuleInfo = new SwHTMLNumRuleInfo( *pNd->GetTextNode() );
@@ -119,10 +119,10 @@ Writer& OutHTML_NumBulListStart( SwHTMLWriter& rWrt,
if( rInfo.GetDepth() > 1 )
{
sal_uLong nPos =
- rWrt.pCurPam->GetPoint()->nNode.GetIndex() + 1;
+ rWrt.m_pCurrentPam->GetPoint()->nNode.GetIndex() + 1;
do
{
- const SwNode* pNd = rWrt.pDoc->GetNodes()[nPos];
+ const SwNode* pNd = rWrt.m_pDoc->GetNodes()[nPos];
if( pNd->IsTextNode() )
{
const SwTextNode *pTextNd = pNd->GetTextNode();
@@ -252,9 +252,9 @@ Writer& OutHTML_NumBulListStart( SwHTMLWriter& rWrt,
sal_uInt16 nStartVal = rNumFormat.GetStart();
if( bStartValue && 1 == nStartVal && i == rInfo.GetDepth()-1 )
{
- if ( rWrt.pCurPam->GetNode().GetTextNode()->GetNum() )
+ if ( rWrt.m_pCurrentPam->GetNode().GetTextNode()->GetNum() )
{
- nStartVal = static_cast< sal_uInt16 >( rWrt.pCurPam->GetNode()
+ nStartVal = static_cast< sal_uInt16 >( rWrt.m_pCurrentPam->GetNode()
.GetTextNode()->GetNumberVector()[i] );
}
else