diff options
Diffstat (limited to 'sw/source/core/layout/pagechg.cxx')
-rw-r--r-- | sw/source/core/layout/pagechg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/layout/pagechg.cxx b/sw/source/core/layout/pagechg.cxx index 0257f12721e5..8405280e5169 100644 --- a/sw/source/core/layout/pagechg.cxx +++ b/sw/source/core/layout/pagechg.cxx @@ -828,7 +828,7 @@ void SwPageFrame::Cut() { while ( pPg ) { - pPg->DecrPhyPageNum(); //inline --nPhyPageNum + --pPg->m_nPhyPageNum; pPg = static_cast<SwPageFrame*>(pPg->GetNext()); } } @@ -867,7 +867,7 @@ void SwPageFrame::Paste( SwFrame* pParent, SwFrame* pSibling ) { while ( pPg ) { - pPg->IncrPhyPageNum(); //inline ++nPhyPageNum + ++pPg->m_nPhyPageNum; pPg->InvalidatePos_(); pPg->InvalidateLayout(); pPg = static_cast<SwPageFrame*>(pPg->GetNext()); |