ui: also bundle nested anonymous namespaces in namespaces overview (issue #465)

bug id = 465
This commit is contained in:
Eberhard Graether
2017-10-09 21:33:05 +02:00
parent 4fdff00908
commit 3a03252d3f
@@ -1217,7 +1217,7 @@ void GraphController::bundleNodesByType()
nodes,
[&](const DummyNode* node)
{
return utility::isPrefix("anonymous", node->name);
return node->name.find("anonymous namespace") != std::string::npos;
},
"Anonymous Namespaces"
);