From: eap Date: Mon, 15 Oct 2012 14:35:51 +0000 (+0000) Subject: Fix dump of ExportGMF() and ExportCGNS() X-Git-Tag: V6_6_0a1~22 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=252161f517834e1f54ac1c589928e101e0e61c22;ds=sidebyside Fix dump of ExportGMF() and ExportCGNS() --- diff --git a/src/SMESH_I/SMESH_Mesh_i.cxx b/src/SMESH_I/SMESH_Mesh_i.cxx index 3bcdb181c..721476f83 100644 --- a/src/SMESH_I/SMESH_Mesh_i.cxx +++ b/src/SMESH_I/SMESH_Mesh_i.cxx @@ -3025,8 +3025,8 @@ void SMESH_Mesh_i::ExportCGNS(::SMESH::SMESH_IDSource_ptr meshPart, SMESH_MeshPartDS partDS( meshPart ); _impl->ExportCGNS(file, &partDS); - TPythonDump() << _this() << ".ExportCGNS( r'" - << file << "', " << overwrite << ", "<< meshPart<< ")"; + TPythonDump() << _this() << ".ExportCGNS( " + << meshPart<< ", r'" << file << "', " << overwrite << ")"; #else THROW_SALOME_CORBA_EXCEPTION("CGNS library is unavailable", SALOME::INTERNAL_ERROR); #endif @@ -3051,8 +3051,7 @@ void SMESH_Mesh_i::ExportGMF(::SMESH::SMESH_IDSource_ptr meshPart, SMESH_MeshPartDS partDS( meshPart ); _impl->ExportGMF(file, &partDS); - TPythonDump() << _this() << ".ExportGMF( r'" - << file << "', "<< meshPart<< ")"; + TPythonDump() << _this() << ".ExportGMF( " << meshPart<< ", r'" << file << "')"; } //============================================================================= @@ -5051,3 +5050,5 @@ _GET_ITER_DEFINE( SMDS_VolumeIteratorPtr, volumesIterator, SMDS_MeshVolume, SMDS // END Implementation of SMESH_MeshPartDS // //================================================================================ + +