Kaydet (Commit) 6e33a2bd authored tarafından Stephan Bergmann's avatar Stephan Bergmann

warning C4702: unreachable code

Change-Id: I711c7b1968a3ef8ff88ab71b4de837b599519b8a
üst 44dd8b83
......@@ -1733,27 +1733,21 @@ ScChangeActionContentCellType ScChangeActionContent::GetContentCellType( const S
case CELLTYPE_STRING :
case CELLTYPE_EDIT :
return SC_CACCT_NORMAL;
//break;
case CELLTYPE_FORMULA :
switch (rCell.mpFormula->GetMatrixFlag())
{
case MM_NONE :
return SC_CACCT_NORMAL;
//break;
case MM_FORMULA :
case MM_FAKE :
return SC_CACCT_MATORG;
//break;
case MM_REFERENCE :
return SC_CACCT_MATREF;
//break;
}
return SC_CACCT_NORMAL;
//break;
default:
return SC_CACCT_NONE;
}
return SC_CACCT_NONE;
}
ScChangeActionContentCellType ScChangeActionContent::GetContentCellType( const ScCellIterator& rIter )
......
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