]> OCCT Git - occt-copy.git/commitdiff
Correct rebase errors
authoraba <aba@opencascade.com>
Wed, 25 Jan 2017 09:56:51 +0000 (12:56 +0300)
committeraba <aba@opencascade.com>
Wed, 25 Jan 2017 09:56:51 +0000 (12:56 +0300)
src/XDEDRAW/XDEDRAW_Common.cxx

index bbac0fdf494b0ef3b6af2d95024ca1cf7b63e2ac..a186f67c9fd63aaf8a25cba7f12e71fcd4c13868 100644 (file)
@@ -832,7 +832,7 @@ TDF_Label ReadVrmlRec(const OSD_Path& thePath, const Handle(TDocStd_Document)& t
         ReadVrmlRec(aSubDirPath, theDoc, aNewLabel);
       }
 
-      aShapeTool->UpdateAssembly(aNewLabel);
+      aShapeTool->UpdateAssemblies();
     }
     // At the end of operation update assemblies
   }
@@ -985,7 +985,7 @@ TDF_Label ReadVrmlNode (const Handle(VrmlData_Node)& theNode,
       ReadVrmlNode (anIt.Value (), theDoc, aNewLabel);
     }
 
-    aShapeTool->UpdateAssembly (aNewLabel);
+    aShapeTool->UpdateAssemblies();
   }
 
   return aNewLabel;
@@ -1082,7 +1082,7 @@ bool ReadSingleVrml (const OSD_Path& thePath, const Handle (TDocStd_Document)& t
   {
     ReadVrmlNode (anIt.Value (), theDoc, aNewLabel);
   }
-  aShapeTool->UpdateAssembly (aNewLabel);
+  aShapeTool->UpdateAssemblies();
 
   return true;
 }