diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-09-01 00:02:40 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-09-01 00:04:51 +0300 |
commit | af5a380bc19f599307b3bc524a31c380d456249e (patch) | |
tree | 080374fb416451758983d9408905aa9db0ca6c6f /lotuswordpro | |
parent | 7bd0adc64b96d523b62ce9dda9e34aedff6b33d4 (diff) |
Remove pointless comments and ASCII art
Change-Id: I387d7b301643f359f2d6a4c5f51a4dd7f5e1c296
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwppara1.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/lwppara1.cxx b/lotuswordpro/source/filter/lwppara1.cxx index 06690f8e43f8..fbc67e2912f4 100644 --- a/lotuswordpro/source/filter/lwppara1.cxx +++ b/lotuswordpro/source/filter/lwppara1.cxx @@ -290,7 +290,6 @@ void LwpPara::GetParaNumber(sal_uInt16 nPosition, ParaNumbering* pParaNumbering) /** * @short override alignment */ -//override style, add by 1-24 void LwpPara::OverrideAlignment(LwpAlignmentOverride* base,LwpAlignmentOverride* over,XFParaStyle* pOverStyle) { if (base)//the latter two parameter never be null @@ -410,7 +409,6 @@ void LwpPara::OverrideParaBreaks(LwpParaProperty* pProps, XFParaStyle* pOverStyl delete m_pBreaks; m_pBreaks = pFinalBreaks.release(); -//add by 1/31 XFStyleManager* pXFStyleManager = LwpGlobalMgr::GetInstance()->GetXFStyleManager(); if (m_pBreaks->IsKeepWithNext()) { @@ -431,7 +429,7 @@ void LwpPara::OverrideParaBreaks(LwpParaProperty* pProps, XFParaStyle* pOverStyl if (m_pBreaks->IsColumnBreakBefore()) { XFParaStyle* pStyle = new XFParaStyle(); - pStyle->SetBreaks(enumXFBreakAftColumn);//tmp after, should change when layout read,note by 1/31 + pStyle->SetBreaks(enumXFBreakAftColumn);//tmp after, should change when layout read m_BefColumnBreakName = pXFStyleManager->AddStyle(pStyle)->GetStyleName(); } if (m_pBreaks->IsColumnBreakAfter()) @@ -440,7 +438,6 @@ void LwpPara::OverrideParaBreaks(LwpParaProperty* pProps, XFParaStyle* pOverStyl pStyle->SetBreaks(enumXFBreakAftColumn); m_AftColumnBreakName = pXFStyleManager->AddStyle(pStyle)->GetStyleName(); } -//add end // pParaStyle->ApplyBreaks(pOverStyle, &aFinalBreaks); } |