mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-03-16 03:01:27 +05:00
0021803: EDF 2351 : Available versions of MED in TUI function ExportMED aren't consistent with GUI behavior
Step 5: More backward compatibility
This commit is contained in:
parent
e3131a7980
commit
6dabe75f3f
@ -5114,7 +5114,25 @@ class meshProxy(SMESH._objref_SMESH_Mesh):
|
|||||||
def CreateDimGroup(self,*args): # 2 args added: nbCommonNodes, underlyingOnly
|
def CreateDimGroup(self,*args): # 2 args added: nbCommonNodes, underlyingOnly
|
||||||
if len( args ) == 3:
|
if len( args ) == 3:
|
||||||
args += SMESH.ALL_NODES, True
|
args += SMESH.ALL_NODES, True
|
||||||
return SMESH._objref_SMESH_Mesh.CreateDimGroup( self, *args )
|
return SMESH._objref_SMESH_Mesh.CreateDimGroup(self, *args)
|
||||||
|
def ExportToMEDX(self, *args): # function removed
|
||||||
|
print "WARNING: ExportToMEDX() is deprecated, use ExportMED() instead"
|
||||||
|
args = [i for i in args if i not in [SMESH.MED_V2_1, SMESH.MED_V2_2]]
|
||||||
|
SMESH._objref_SMESH_Mesh.ExportMED(self, *args)
|
||||||
|
def ExportToMED(self, *args): # function removed
|
||||||
|
print "WARNING: ExportToMED() is deprecated, use ExportMED() instead"
|
||||||
|
args = [i for i in args if i not in [SMESH.MED_V2_1, SMESH.MED_V2_2]]
|
||||||
|
while len(args) < 4: # !!!! nb of parameters for ExportToMED IDL's method
|
||||||
|
args.append(True)
|
||||||
|
SMESH._objref_SMESH_Mesh.ExportMED(self, *args)
|
||||||
|
def ExportPartToMED(self, *args): # 'version' parameter removed
|
||||||
|
args = [i for i in args if i not in [SMESH.MED_V2_1, SMESH.MED_V2_2]]
|
||||||
|
SMESH._objref_SMESH_Mesh.ExportPartToMED(self, *args)
|
||||||
|
def ExportMED(self, *args): # signature of method changed
|
||||||
|
args = [i for i in args if i not in [SMESH.MED_V2_1, SMESH.MED_V2_2]]
|
||||||
|
while len(args) < 4: # !!!! nb of parameters for ExportToMED IDL's method
|
||||||
|
args.append(True)
|
||||||
|
SMESH._objref_SMESH_Mesh.ExportMED(self, *args)
|
||||||
pass
|
pass
|
||||||
omniORB.registerObjref(SMESH._objref_SMESH_Mesh._NP_RepositoryId, meshProxy)
|
omniORB.registerObjref(SMESH._objref_SMESH_Mesh._NP_RepositoryId, meshProxy)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user