From: kgv Date: Thu, 19 Jan 2017 16:29:59 +0000 (+0300) Subject: 0028376: Visualization, AIS_ColoredShape - fix endless recursion due to misprint X-Git-Tag: V7_2_0_beta~271 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=478ad1d19e35789a28a5d6b195667cf8cd4c7bb6;p=occt-copy.git 0028376: Visualization, AIS_ColoredShape - fix endless recursion due to misprint --- 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); } } }