diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-09-01 14:17:20 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-09-01 18:25:49 +0200 |
commit | 244c4571d3c317640538412915fa5cf514778c7b (patch) | |
tree | c9c9298c628b6e2d6cc8d8de5b33d33fedf70553 /sw | |
parent | 89077c790eb18e37dd6ab7d5e156ae33492a11a3 (diff) |
sw: remove a silly 16bit cast
Change-Id: I20eb3379838c5255ff47882b6693908b5971653f
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/xml/xmltbli.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/xml/xmltbli.cxx b/sw/source/filter/xml/xmltbli.cxx index 800513759d4a..518d8eebf3dd 100644 --- a/sw/source/filter/xml/xmltbli.cxx +++ b/sw/source/filter/xml/xmltbli.cxx @@ -1932,7 +1932,7 @@ SwTableBox *SwXMLTableContext::MakeTableBox( SwTableLine *pUpper, { // Could the table be splitted behind the current row? bool bSplit = true; - SwXMLTableRow_Impl *pRow = (*m_pRows)[(sal_uInt16)i].get(); + SwXMLTableRow_Impl *pRow = (*m_pRows)[i].get(); for( sal_uInt32 j=nLeftCol; j<nRightCol; j++ ) { bSplit = ( 1UL == pRow->GetCell(j)->GetRowSpan() ); @@ -1990,7 +1990,7 @@ SwTableBox *SwXMLTableContext::MakeTableBox( SwTableLine *pUpper, } } } - // und jetzt nochmal von vorne ... + // and now start over again... } } |