coverity#705162 Missing break in switch, assuming its intentional

Change-Id: I3e0658ec26392abf5ad8de53d282b9cc35205025
This commit is contained in:
Caolán McNamara
2014-06-05 10:06:44 +01:00
parent 8d1063ce1e
commit 9e9c75cc2e

View File

@@ -706,9 +706,11 @@ void OS2METReader::SetPen( const Color& rColor, sal_uInt16 nLineWidth, PenStyle
break;
case PEN_DASHDOT :
nDashCount++;
//fall-through
case PEN_DOT :
nDotCount++;
nDashCount--;
//fall-through
case PEN_DASH :
nDashCount++;
aLineInfo.SetDotCount( nDotCount );