mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-02 21:00:34 +05:00
PAL18696 SMESH : version of MED export
use GetVersionString(SMESH::MED_VERSION version, CORBA::Short nbDigits);
This commit is contained in:
parent
8579e44356
commit
fc9f03f0d9
@ -278,9 +278,11 @@ using namespace std;
|
||||
if (aRet)
|
||||
return;
|
||||
}
|
||||
|
||||
aFilterMap.insert( QObject::tr("MED 2.1 (*.med)"), SMESH::MED_V2_1 );
|
||||
aFilterMap.insert( QObject::tr("MED 2.2 (*.med)"), SMESH::MED_V2_2 );
|
||||
// PAL18696
|
||||
QString v21( aMesh->GetVersionString( SMESH::MED_V2_1, 2));
|
||||
QString v22( aMesh->GetVersionString( SMESH::MED_V2_2, 2));
|
||||
aFilterMap.insert( QString("MED ") + v21 + " (*.med)", SMESH::MED_V2_1 );
|
||||
aFilterMap.insert( QString("MED ") + v22 + " (*.med)", SMESH::MED_V2_2 );
|
||||
}
|
||||
break;
|
||||
case 124:
|
||||
|
Loading…
Reference in New Issue
Block a user