summaryrefslogtreecommitdiff
path: root/sw/source/core/doc/htmltbl.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2020-08-03 09:01:55 +0200
committerMiklos Vajna <vmiklos@collabora.com>2020-08-03 11:58:02 +0200
commit1de27900d2e1743825f297609f62cb0de3f1a032 (patch)
treebc924258c9e9686138181c5a193258d91d914921 /sw/source/core/doc/htmltbl.cxx
parente3d623ada3d585408d200416bae3878a6cb58a74 (diff)
sw: SwFlyInContentFrame, SwHTMLTableLayoutCnts, SwHTMLTableLayoutColumn ...
... and SwTextFly See tdf#94879 for motivation. Change-Id: I833b563a03824ae14014cdd418dcfd3b832a9a94 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99984 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/core/doc/htmltbl.cxx')
-rw-r--r--sw/source/core/doc/htmltbl.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/source/core/doc/htmltbl.cxx b/sw/source/core/doc/htmltbl.cxx
index ff989ceca612..437ec985e9be 100644
--- a/sw/source/core/doc/htmltbl.cxx
+++ b/sw/source/core/doc/htmltbl.cxx
@@ -80,13 +80,13 @@ SwHTMLTableLayoutCnts::SwHTMLTableLayoutCnts(const SwStartNode *pSttNd,
std::shared_ptr<SwHTMLTableLayout> const& rTab,
bool bNoBrTag,
std::shared_ptr<SwHTMLTableLayoutCnts> const& rNxt ) :
- xNext( rNxt ), pBox( nullptr ), xTable( rTab ), pStartNode( pSttNd ),
- nPass1Done( 0 ), nWidthSet( 0 ), bNoBreakTag( bNoBrTag )
+ m_xNext( rNxt ), m_pBox( nullptr ), m_xTable( rTab ), m_pStartNode( pSttNd ),
+ m_nPass1Done( 0 ), m_nWidthSet( 0 ), m_bNoBreakTag( bNoBrTag )
{}
const SwStartNode *SwHTMLTableLayoutCnts::GetStartNode() const
{
- return pBox ? pBox->GetSttNd() : pStartNode;
+ return m_pBox ? m_pBox->GetSttNd() : m_pStartNode;
}
SwHTMLTableLayoutCell::SwHTMLTableLayoutCell(std::shared_ptr<SwHTMLTableLayoutCnts> const& rCnts,
@@ -102,11 +102,11 @@ SwHTMLTableLayoutCell::SwHTMLTableLayoutCell(std::shared_ptr<SwHTMLTableLayoutCn
SwHTMLTableLayoutColumn::SwHTMLTableLayoutColumn( sal_uInt16 nWidth,
bool bRelWidth,
bool bLBorder ) :
- nMinNoAlign(MINLAY), nMaxNoAlign(MINLAY), nAbsMinNoAlign(MINLAY),
- nMin(0), nMax(0),
- nAbsColWidth(0), nRelColWidth(0),
- nWidthOption( nWidth ), bRelWidthOption( bRelWidth ),
- bLeftBorder( bLBorder )
+ m_nMinNoAlign(MINLAY), m_nMaxNoAlign(MINLAY), m_nAbsMinNoAlign(MINLAY),
+ m_nMin(0), m_nMax(0),
+ m_nAbsColWidth(0), m_nRelColWidth(0),
+ m_nWidthOption( nWidth ), m_bRelWidthOption( bRelWidth ),
+ m_bLeftBorder( bLBorder )
{}
SwHTMLTableLayoutConstraints::SwHTMLTableLayoutConstraints(sal_uLong nMin, sal_uLong nMax,