From 8beb516b80349d80dd1fabb55a4952a9fa6d511b Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Thu, 14 Sep 2017 17:32:33 +0200 Subject: [PATCH] logic: Added template specialization and template member specialization edges to call graph --- src/lib_gui/qt/view/QtGraphView.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib_gui/qt/view/QtGraphView.cpp b/src/lib_gui/qt/view/QtGraphView.cpp index 2a01262c..d128d0cd 100644 --- a/src/lib_gui/qt/view/QtGraphView.cpp +++ b/src/lib_gui/qt/view/QtGraphView.cpp @@ -408,7 +408,8 @@ MessageActivateTrail QtGraphView::getMessageActivateTrail(bool forward) case Node::NODE_FUNCTION: case Node::NODE_METHOD: - trailType = Edge::EDGE_CALL | Edge::EDGE_OVERRIDE; + trailType = Edge::EDGE_CALL | Edge::EDGE_OVERRIDE | + Edge::EDGE_TEMPLATE_SPECIALIZATION | Edge::EDGE_TEMPLATE_MEMBER_SPECIALIZATION; horizontalLayout = true; break;