Kaydet (Commit) 0a205a71 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1267647 Logically dead code

inspection shows its always non null

Change-Id: Idc2e0f62a29b635381685f81d0f9f88b3eef659d
üst af885596
......@@ -87,11 +87,9 @@ void XFTable::SetColumnStyle(sal_Int32 col, const OUString& style)
m_aColumns[col] = style;
}
void XFTable::AddRow(XFRow *pRow)
void XFTable::AddRow(XFRow *pRow)
{
assert(pRow);
if( !pRow )
return;
int row = pRow->GetRow();
......
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