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

coverity#736029 Missing break in switch

Change-Id: I12dcf88cc2b54c89cc9d56299b17730ad19a4854
üst 25059614
......@@ -1211,9 +1211,9 @@ namespace cairocanvas
switch( strokeAttributes.JoinType )
{
// cairo doesn't have join type NONE so we use MITER as it's pretty close
case rendering::PathJoinType::NONE:
bNoLineJoin = true;
// cairo doesn't have join type NONE so we use MITER as it's pretty close
case rendering::PathJoinType::MITER:
cairo_set_line_join( mpCairo.get(), CAIRO_LINE_JOIN_MITER );
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