mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-16 01:30:33 +05:00
Fix of IPAL19446 (Qt4 porting. Cancel on Export MED file leads to inapplicable warning).
This commit is contained in:
parent
d8bff2b915
commit
9a383815d8
@ -338,7 +338,7 @@
|
||||
fd->selectFilter( QObject::tr("STL ASCII (*.stl)") );
|
||||
bool is_ok = false;
|
||||
while (!is_ok) {
|
||||
fd->exec();
|
||||
if ( fd->exec() )
|
||||
aFilename = fd->selectedFile();
|
||||
aIsASCII_STL = (aFilterMapSTL[fd->selectedFilter()]) == 1 ? true: false;
|
||||
is_ok = true;
|
||||
@ -356,11 +356,12 @@
|
||||
( SMESHGUI::desktop(), false, QObject::tr("SMESH_AUTO_GROUPS"), true, true );
|
||||
fd->setWindowTitle( aTitle );
|
||||
fd->setFilters( filters );
|
||||
fd->selectFilter( QObject::tr("MED 2.2 (*.med)") );
|
||||
//fd->selectFilter( QObject::tr("MED 2.2 (*.med)") );
|
||||
fd->selectFilter( filters.last() );
|
||||
fd->SetChecked(toCreateGroups);
|
||||
bool is_ok = false;
|
||||
while (!is_ok) {
|
||||
fd->exec();
|
||||
if ( fd->exec() )
|
||||
aFilename = fd->selectedFile();
|
||||
aFormat = aFilterMap[fd->selectedFilter()];
|
||||
is_ok = true;
|
||||
|
Loading…
Reference in New Issue
Block a user