From d3ee8280d18cc6ae679594d8bf0c4b455d09a67a Mon Sep 17 00:00:00 2001 From: mzn Date: Wed, 29 Nov 2006 11:02:42 +0000 Subject: [PATCH] Fix for bug IPAL13981(imp PAL13619: Dump python fails on groups created in Mesh module). --- src/GEOM/GEOM_PythonDump.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GEOM/GEOM_PythonDump.cxx b/src/GEOM/GEOM_PythonDump.cxx index a3ff987bd..60940d941 100644 --- a/src/GEOM/GEOM_PythonDump.cxx +++ b/src/GEOM/GEOM_PythonDump.cxx @@ -124,7 +124,7 @@ namespace GEOM TDF_Tool::TagList(theObj1->GetEntry(), aTags1); TDF_Tool::TagList(theObj2->GetEntry(), aTags2); TColStd_ListIteratorOfListOfInteger aListIter1(aTags1), aListIter2(aTags2); - for (; aListIter1.More(); aListIter1.Next()) { + for (; aListIter1.More(); aListIter1.Next(), aListIter2.Next()) { if (!aListIter2.More()) return theObj1; // anObj1 is stored under anObj2 -- 2.39.2