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

coverity#736046 Missing break in switch

Change-Id: I1680d21b8f123ec1d937d699edee62b8ff0d6058
üst 1e9ce046
......@@ -1004,6 +1004,7 @@ ConvErr ExcelToSc::Convert( _ScRangeListTabs& rRangeList, XclImpStream& aIn, sal
case EXC_BIFF3:
case EXC_BIFF4: nIgnore = 10; break;
case EXC_BIFF5: DBG_WARNING( "-ExcelToSc::Convert(): 0x1A does not exist in Biff5!" );
//fall-through
default: DBG_WARNING( "-ExcelToSc::Convert(): A little oblivious?" );
}
break;
......@@ -1014,6 +1015,7 @@ ConvErr ExcelToSc::Convert( _ScRangeListTabs& rRangeList, XclImpStream& aIn, sal
case EXC_BIFF3:
case EXC_BIFF4: nIgnore = 4; break;
case EXC_BIFF5: DBG_WARNING( "-ExcelToSc::Convert(): 0x1B does not exist in Biff5!" );
//fall-through
default: DBG_WARNING( "-ExcelToSc::Convert(): A little oblivious?" );
}
break;
......
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