diff options
author | Xisco Fauli <anistenis@gmail.com> | 2013-04-14 03:36:03 +0200 |
---|---|---|
committer | Xisco Fauli <anistenis@gmail.com> | 2013-04-14 17:52:34 +0200 |
commit | ce0f4825730a0f96ca5369a7d07982ea073901fb (patch) | |
tree | 8001999d0a148cf6fef3420fb50c2ed148d68aa2 /sw | |
parent | 4e07258cbd1f4fb16d6ce2174fb5c74c3b36da33 (diff) |
Fix compilation problem caused by previous commit
Change-Id: I5fe90dd5a39c705b7b4dbc0c8d0b9e383c62e449
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/ww8par2.cxx | 2 | ||||
-rw-r--r-- | sw/source/filter/ww8/ww8par2.hxx | 1 | ||||
-rw-r--r-- | 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) { // <WW8SwFlyPara> 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 <nWWPgTop> - 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, // <WW8SwFlyPara> 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(), |