diff options
author | dennisroczek <dennisroczek@libreoffice.org> | 2017-03-13 23:30:45 +0000 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-19 05:43:51 +0000 |
commit | 7e24cedb9eaf68c2b95296bf6352f94e2a60532e (patch) | |
tree | 68d8e9540388fd02faa6312cd38a72e5b1736c31 /lotuswordpro | |
parent | de084e09cfbf646703c80fd84cebb5978e1ca940 (diff) |
fix typo/grammar: "the the" --> the
* also removing pointless ASCII art (tdf#62475)
* truncate ending whitespace in Doxyfile
Change-Id: I59b012f41ac0d170216229da85a49aa41689dee5
Reviewed-on: https://gerrit.libreoffice.org/35151
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwptablelayout.cxx | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/lotuswordpro/source/filter/lwptablelayout.cxx b/lotuswordpro/source/filter/lwptablelayout.cxx index 2baae3125a30..dc0c56b523be 100644 --- a/lotuswordpro/source/filter/lwptablelayout.cxx +++ b/lotuswordpro/source/filter/lwptablelayout.cxx @@ -741,8 +741,7 @@ void LwpTableLayout::RegisterStyle() XFStyleManager* pXFStyleManager = LwpGlobalMgr::GetInstance()->GetXFStyleManager(); m_StyleName = pXFStyleManager->AddStyle(xTableStyle.release()).m_pStyle->GetStyleName(); - //convert to OO table now and register row style - // traverse + //convert to OO table now and register row style traverse TraverseTable(); SplitConflictCells(); @@ -753,10 +752,8 @@ void LwpTableLayout::RegisterStyle() // Parse table ParseTable(); - //Comment: the old code doesn't check if the LwpFoundry pointer is NULL, - // so the NULL pointer cause sodc freeze. Add code to check the - // the pointer. - //New Code + // the old code doesn't check if the LwpFoundry pointer is NULL, + // so the NULL pointer cause sodc freeze. Add code to check the pointer. if (GetFoundry() && GetTable()) PutCellVals(GetFoundry(), GetTable()->GetObjectID()); } @@ -1101,10 +1098,8 @@ void LwpTableLayout::ConvertTable(rtl::Reference<XFTable> const & pXFTable, sal_ void LwpTableLayout::PutCellVals(LwpFoundry* pFoundry, LwpObjectID aTableID) { - //Comment:The old code doesn't check if the LwpFoundry pointer is NULL, - // So the NULL pointer cause sodc frozen. Add code to check the - // the pointer. - //New Code + // The old code doesn't check if the LwpFoundry pointer is NULL, so the NULL + // pointer cause sodc frozen. Add code to check the pointer. if( !pFoundry ) return; try{ @@ -1435,7 +1430,7 @@ void LwpColumnLayout::Read() sal_uInt16 colid; colid = pStrm->QuickReaduInt16(); // forced to lushort - ccolid = (sal_uInt8)colid; // Phillip + ccolid = (sal_uInt8)colid; cwidth = pStrm->QuickReadInt32(); pStrm->SkipExtra(); |