From 478ad1d19e35789a28a5d6b195667cf8cd4c7bb6 Mon Sep 17 00:00:00 2001 From: kgv Date: Thu, 19 Jan 2017 19:29:59 +0300 Subject: [PATCH] 0028376: Visualization, AIS_ColoredShape - fix endless recursion due to misprint --- src/AIS/AIS_ColoredShape.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AIS/AIS_ColoredShape.cxx b/src/AIS/AIS_ColoredShape.cxx index 627db72633..d271691087 100644 --- a/src/AIS/AIS_ColoredShape.cxx +++ b/src/AIS/AIS_ColoredShape.cxx @@ -58,7 +58,7 @@ namespace if (aShape.ShapeType() == TopAbs_COMPOUND && theMap.Add (aShape)) { - collectSubCompounds (theMap, theShape); + collectSubCompounds (theMap, aShape); } } }