]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
NRI : Use component username from Catalog.
authornri <nri@opencascade.com>
Mon, 19 May 2003 14:42:34 +0000 (14:42 +0000)
committernri <nri@opencascade.com>
Mon, 19 May 2003 14:42:34 +0000 (14:42 +0000)
src/GEOM_SWIG/batchmode_geompy.py

index 6601dc6e3aa67b40628e3697d0e091801dbc55f2..374a2b411562b5e6d920e9b0d80ebba4048fe3f2 100644 (file)
@@ -12,6 +12,7 @@
 from batchmode_salome import *
 
 #--------------------------------------------------------------------------
+modulecatalog = naming_service.Resolve("/Kernel/ModulCatalog")
 
 geom = lcc.FindOrLoadComponent("FactoryServer", "GEOM")
 geom.GetCurrentStudy(myStudyId)
@@ -22,7 +23,11 @@ if father is None:
         father = myBuilder.NewComponent("GEOM")
         A1 = myBuilder.FindOrCreateAttribute(father, "AttributeName");
         FName = A1._narrow(SALOMEDS.AttributeName)
-        FName.SetValue("Geometry")
+#        FName.SetValue("Geometry")
+
+       Comp = modulecatalog.GetComponent( "GEOM" )
+       FName.SetValue( Comp._get_componentusername() )
+
        A2 = myBuilder.FindOrCreateAttribute(father, "AttributePixMap");
        aPixmap = A2._narrow(SALOMEDS.AttributePixMap);
        aPixmap.SetPixMap( "ICON_OBJBROWSER_Geometry" );