Sketcher: Change GeometryFacadePy representation

This commit is contained in:
Abdullah Tahiri
2020-11-01 07:39:32 +01:00
committed by abdullahtahiriyo
parent 868c2ada73
commit 36e58956c3

View File

@@ -52,14 +52,9 @@ using namespace Sketcher;
std::string GeometryFacadePy::representation(void) const
{
std::stringstream str;
str << "<GeometryFacade ( Extension(";
str << "<GeometryFacade ( Id=";
if(getGeometryFacadePtr()->getExtensionName().size()>0)
str << "\'" << getGeometryFacadePtr()->getExtensionName() << "\', ";
str << "Id=";
str << getGeometryFacadePtr()->getId() << ") >";
str << getGeometryFacadePtr()->getId() << " ) >";
return str.str();
}