summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-08-30 21:59:23 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-08-30 21:59:23 (GMT)
commitb59edd279f887e55b162ae1b1c7bce4b2ca29dab (patch)
treeace43cf77818153aecaaa081d1a2b3df7c61646f
parent32aa9f2a7898b5c43070a5cd0dec8bddcc6b8c39 (diff)
downloadDoxygen-b59edd279f887e55b162ae1b1c7bce4b2ca29dab.zip
Doxygen-b59edd279f887e55b162ae1b1c7bce4b2ca29dab.tar.gz
Doxygen-b59edd279f887e55b162ae1b1c7bce4b2ca29dab.tar.bz2
Bug 735726 - [PATCH] Fix missing break in switch case statement
-rw-r--r--src/dot.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dot.cpp b/src/dot.cpp
index c64729a..b62a536 100644
--- a/src/dot.cpp
+++ b/src/dot.cpp
@@ -4667,9 +4667,10 @@ void DotGroupCollaboration::Edge::write( FTextStream &t ) const
}
switch( eType )
{
- case thierarchy :
+ case thierarchy:
arrowStyle = "dir=\"back\", style=\"solid\"";
- default :
+ break;
+ default:
t << ", color=\"" << linkTypeColor[(int)eType] << "\"";
break;
}