Kaydet (Commit) 244c4571 authored tarafından Michael Stahl's avatar Michael Stahl

sw: remove a silly 16bit cast

Change-Id: I20eb3379838c5255ff47882b6693908b5971653f
üst 89077c79
......@@ -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...
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment