Fix of IPAL19446 (Qt4 porting. Cancel on Export MED file leads to inapplicable warning).

This commit is contained in:
akl 2008-04-23 13:04:17 +00:00
parent d8bff2b915
commit 9a383815d8

View File

@ -338,8 +338,8 @@
fd->selectFilter( QObject::tr("STL ASCII (*.stl)") );
bool is_ok = false;
while (!is_ok) {
fd->exec();
aFilename = fd->selectedFile();
if ( fd->exec() )
aFilename = fd->selectedFile();
aIsASCII_STL = (aFilterMapSTL[fd->selectedFilter()]) == 1 ? true: false;
is_ok = true;
}
@ -356,12 +356,13 @@
( 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();
aFilename = fd->selectedFile();
if ( fd->exec() )
aFilename = fd->selectedFile();
aFormat = aFilterMap[fd->selectedFilter()];
is_ok = true;
if ( !aFilename.isEmpty()