Commit b59edd27 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 735726 - [PATCH] Fix missing break in switch case statement

parent 32aa9f2a
...@@ -4667,9 +4667,10 @@ void DotGroupCollaboration::Edge::write( FTextStream &t ) const ...@@ -4667,9 +4667,10 @@ void DotGroupCollaboration::Edge::write( FTextStream &t ) const
} }
switch( eType ) switch( eType )
{ {
case thierarchy : case thierarchy:
arrowStyle = "dir=\"back\", style=\"solid\""; arrowStyle = "dir=\"back\", style=\"solid\"";
default : break;
default:
t << ", color=\"" << linkTypeColor[(int)eType] << "\""; t << ", color=\"" << linkTypeColor[(int)eType] << "\"";
break; 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