MODIFIED: #1471 There shouldn't be an error message when clicking cancel in the open file dialog.

This commit is contained in:
dfighter1985 2012-11-21 23:36:07 +01:00
parent 1667365842
commit 0ce956b71a

View file

@ -138,19 +138,13 @@ namespace GUIEditor
tr( "All XML files (*.xml)" ) );
setCursor( Qt::WaitCursor );
if( !fileName.isEmpty() )
if( fileName.isEmpty() )
{
_lastDir = QFileInfo( fileName ).absolutePath();
}
else
{
QMessageBox::critical( this,
tr( "Error opening project file" ),
tr( "Cannot open the specified project file!" ) );
setCursor( Qt::ArrowCursor );
return;
}
_lastDir = QFileInfo( fileName ).absolutePath();
projectParser.clear();