From: nkv Date: Wed, 12 Mar 2008 08:37:35 +0000 (+0000) Subject: BUG 18584 - Import doesn't work X-Git-Tag: V5_0_0a1~15 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=96a900317de38573a5a99657c49075deaa2977e1;p=modules%2Fgeom.git BUG 18584 - Import doesn't work BUG 19215 - Exception if file is not selected --- diff --git a/src/GEOMToolsGUI/GEOMToolsGUI.cxx b/src/GEOMToolsGUI/GEOMToolsGUI.cxx index 10c901d73..51d575831 100644 --- a/src/GEOMToolsGUI/GEOMToolsGUI.cxx +++ b/src/GEOMToolsGUI/GEOMToolsGUI.cxx @@ -98,12 +98,13 @@ static QString getFileName( QWidget* parent, fd->selectFilter( aBrepFilter ); } - fd->setFilters( filters ); + QString filename; + if ( fd->exec() == QDialog::Accepted ) { + filename = fd->selectedFile(); + format = filterMap[fd->selectedFilter()]; + lastUsedFilter = fd->selectedFilter(); + } - fd->exec(); - QString filename = fd->selectedFile(); - format = filterMap[fd->selectedFilter()]; - lastUsedFilter = fd->selectedFilter(); delete fd; qApp->processEvents(); return filename; @@ -501,6 +502,9 @@ bool GEOMToolsGUI::Import() QString fileName = getFileName(app->desktop(), "", aMap, filters, tr("GEOM_MEN_IMPORT"), true, fileType); + if (fileName.isEmpty()) + return false; + if (fileType.isEmpty() ) { // Trying to detect file type @@ -511,7 +515,7 @@ bool GEOMToolsGUI::Import() fileType = aPossibleType; } - if (fileName.isEmpty() || fileType.isEmpty()) + if (fileType.isEmpty()) return false; GEOM_Operation* anOp = new GEOM_Operation (app, aInsOp.in()); @@ -522,8 +526,8 @@ bool GEOMToolsGUI::Import() anOp->start(); - CORBA::String_var fileN = fileName.toLatin1().data(); - CORBA::String_var fileT = fileType.toLatin1().data(); + CORBA::String_var fileN = CORBA::string_dup(fileName.toLatin1().data()); + CORBA::String_var fileT = CORBA::string_dup(fileType.toLatin1().data()); anObj = aInsOp->Import(fileN, fileT); if ( !anObj->_is_nil() && aInsOp->IsDone() ) {