gdiplus: Remove superfluous braces.

This commit is contained in:
Andrew Talbot 2012-11-27 22:22:16 +00:00 committed by Alexandre Julliard
parent 9205f02ac5
commit f8da0d3a1e

View file

@ -1724,7 +1724,6 @@ static void widen_joint(const GpPointF *p1, const GpPointF *p2, const GpPointF *
{ {
case LineJoinMiter: case LineJoinMiter:
case LineJoinMiterClipped: case LineJoinMiterClipped:
{
if ((p2->X - p1->X) * (p3->Y - p1->Y) > (p2->Y - p1->Y) * (p3->X - p1->X)) if ((p2->X - p1->X) * (p3->Y - p1->Y) > (p2->Y - p1->Y) * (p3->X - p1->X))
{ {
float distance = pen->width/2.0; float distance = pen->width/2.0;
@ -1752,7 +1751,6 @@ static void widen_joint(const GpPointF *p1, const GpPointF *p2, const GpPointF *
/* else fall-through */ /* else fall-through */
} }
/* else fall-through */ /* else fall-through */
}
default: default:
case LineJoinBevel: case LineJoinBevel:
add_bevel_point(p2, p1, pen, 1, last_point); add_bevel_point(p2, p1, pen, 1, last_point);