From 076b125a906af83b11ce976ccf3319652215910e Mon Sep 17 00:00:00 2001 From: szy Date: Wed, 4 Mar 2015 14:58:37 +0300 Subject: [PATCH] 0025501: TNaming::Displace calls itself recursively with default parameter. Patch to fix misprint in method Displace (). --- src/TNaming/TNaming.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TNaming/TNaming.cxx b/src/TNaming/TNaming.cxx index 9b31c8f46d..685a606bc4 100644 --- a/src/TNaming/TNaming.cxx +++ b/src/TNaming/TNaming.cxx @@ -398,7 +398,7 @@ void TNaming::Displace (const TDF_Label& L, } } for (TDF_ChildIterator ciL(L); ciL.More(); ciL.Next()) { - Displace (ciL.Value(),Loc); + Displace (ciL.Value(), Loc, WithOld); } }