From 4084b64caba5870c2321fbe4a1243a17aa0a2a39 Mon Sep 17 00:00:00 2001 From: vsr Date: Wed, 5 Jul 2017 18:16:55 +0300 Subject: [PATCH] Fix for bug of RestoreGivenSubShapes() function's dump coming from SALOME Community forum: http://www.salome-platform.org/forum/forum_14/717558679 --- src/GEOM/GEOM_PythonDump.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/GEOM/GEOM_PythonDump.hxx b/src/GEOM/GEOM_PythonDump.hxx index 7736c343d..633fd44d0 100644 --- a/src/GEOM/GEOM_PythonDump.hxx +++ b/src/GEOM/GEOM_PythonDump.hxx @@ -61,20 +61,20 @@ namespace GEOM Standard_EXPORT TPythonDump& operator<< (const char* theArg); Standard_EXPORT TPythonDump& operator<< (const TCollection_AsciiString theArg); Standard_EXPORT TPythonDump& operator<< (const TopAbs_ShapeEnum theArg); - Standard_EXPORT TPythonDump& operator<< (const Handle(GEOM_BaseObject)& theObject); + Standard_EXPORT TPythonDump& operator<< (const Handle(::GEOM_BaseObject)& theObject); Standard_EXPORT TPythonDump& operator<< (const Handle(TColStd_HSequenceOfTransient)& objects); - Standard_EXPORT TPythonDump& operator<< (const std::list& theObjects); + Standard_EXPORT TPythonDump& operator<< (const std::list& theObjects); Standard_EXPORT TPythonDump& operator<< (const GEOM_BaseObject* theObject); }; /*! Returns an object from two given, which has the latest entry */ - Standard_EXPORT Handle(GEOM_Object) GetCreatedLast (const Handle(GEOM_Object)& theObj1, - const Handle(GEOM_Object)& theObj2); + Standard_EXPORT Handle(::GEOM_Object) GetCreatedLast (const Handle(::GEOM_Object)& theObj1, + const Handle(::GEOM_Object)& theObj2); /*! Returns an object from \a theObjects, which has the latest entry */ - Standard_EXPORT Handle(GEOM_Object) GetCreatedLast (const Handle(TColStd_HSequenceOfTransient)& theObjects); + Standard_EXPORT Handle(::GEOM_Object) GetCreatedLast (const Handle(TColStd_HSequenceOfTransient)& theObjects); } #endif -- 2.30.2