From ce0f4825730a0f96ca5369a7d07982ea073901fb Mon Sep 17 00:00:00 2001 From: Xisco Fauli Date: Sun, 14 Apr 2013 03:36:03 +0200 Subject: Fix compilation problem caused by previous commit Change-Id: I5fe90dd5a39c705b7b4dbc0c8d0b9e383c62e449 --- sw/source/filter/ww8/ww8par2.cxx | 2 +- sw/source/filter/ww8/ww8par2.hxx | 1 + sw/source/filter/ww8/ww8par6.cxx | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx index fbc2e083c576..2e4ed84e95cc 100644 --- a/sw/source/filter/ww8/ww8par2.cxx +++ b/sw/source/filter/ww8/ww8par2.cxx @@ -3425,7 +3425,7 @@ bool SwWW8ImplReader::StartTable(WW8_CP nStartCp) { // constructor has changed - new 4th parameter // containing WW8 page top margin. - pTableSFlyPara = new WW8SwFlyPara(*pPaM, *pTableWFlyPara, + pTableSFlyPara = new WW8SwFlyPara(*pPaM, *this, *pTableWFlyPara, maSectionManager.GetWWPageTopMargin(), maSectionManager.GetPageLeft(), maSectionManager.GetTextAreaWidth(), nIniFlyDx, nIniFlyDy); diff --git a/sw/source/filter/ww8/ww8par2.hxx b/sw/source/filter/ww8/ww8par2.hxx index fe25b3d21c46..ca8a31da5e71 100644 --- a/sw/source/filter/ww8/ww8par2.hxx +++ b/sw/source/filter/ww8/ww8par2.hxx @@ -75,6 +75,7 @@ struct WW8SwFlyPara // add parameter - WW8's page top margin WW8SwFlyPara( SwPaM& rPaM, + SwWW8ImplReader& rIo, WW8FlyPara& rWW, const sal_uInt32 nWWPgTop, const sal_uInt32 nPgLeft, diff --git a/sw/source/filter/ww8/ww8par6.cxx b/sw/source/filter/ww8/ww8par6.cxx index c503662dea0c..e1ae0f6947df 100644 --- a/sw/source/filter/ww8/ww8par6.cxx +++ b/sw/source/filter/ww8/ww8par6.cxx @@ -1726,6 +1726,7 @@ bool WW8FlyPara::IsEmpty() const // #i18732# - changes made on behalf of CMC WW8SwFlyPara::WW8SwFlyPara( SwPaM& rPaM, + SwWW8ImplReader& rIo, WW8FlyPara& rWW, const sal_uInt32 nWWPgTop, const sal_uInt32 nPgLeft, @@ -2285,7 +2286,7 @@ bool SwWW8ImplReader::StartApo(const ApoTestResults &rApo, // constructor has changed - new 4th parameter // containing WW8 page top margin. - pSFlyPara = new WW8SwFlyPara( *pPaM, *pWFlyPara, + pSFlyPara = new WW8SwFlyPara( *pPaM, *this, *pWFlyPara, maSectionManager.GetWWPageTopMargin(), maSectionManager.GetPageLeft(), maSectionManager.GetTextAreaWidth(), -- cgit