Commit new feature: export to OFF file.

This commit is contained in:
Laurent Rineau 2008-04-08 08:53:16 +00:00
parent 3973614fc5
commit 320f06ab31
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ void MainWindow::on_action_Open_triggered()
QString filename = QFileDialog::getOpenFileName(this, tr("Open File"),
"",
tr("all Files (*.*)"));
if(!filename.isNull())
if(!filename.isEmpty())
surface_open(filename);
}