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

coverity#736061 Missing break in switch

Change-Id: I764ff930af91d1de9a9b2dc0eb1b6005e0dd83db
üst c5802b51
...@@ -313,6 +313,7 @@ static void AddUnitPropertyValue(OStringBuffer &rOut, long nVal, ...@@ -313,6 +313,7 @@ static void AddUnitPropertyValue(OStringBuffer &rOut, long nVal,
case FUNIT_M: case FUNIT_M:
case FUNIT_KM: case FUNIT_KM:
OSL_ENSURE( FUNIT_CM == eUnit, "Measuring unit not supported" ); OSL_ENSURE( FUNIT_CM == eUnit, "Measuring unit not supported" );
//fall-through
case FUNIT_CM: case FUNIT_CM:
// 0.01cm = 5.7twip (not exact, but the UI is also not exact) // 0.01cm = 5.7twip (not exact, but the UI is also not exact)
nMul = 2540; // 2.54 * 1000 nMul = 2540; // 2.54 * 1000
......
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