Added *.dev and *.* to file filter for well path import

p4#: 22099
This commit is contained in:
Magne Sjaastad
2013-08-06 11:56:07 +02:00
parent adff387d36
commit 9910480538

View File

@@ -786,7 +786,7 @@ void RiuMainWindow::slotImportWellPathsFromFile()
// Open dialog box to select well path files
RiaApplication* app = RiaApplication::instance();
QString defaultDir = app->defaultFileDialogDirectory("WELLPATH_DIR");
QStringList wellPathFilePaths = QFileDialog::getOpenFileNames(this, "Import Well Paths", defaultDir, "JSON Well Path (*.json);;ASCII Well Paths (*.asc *.asci *.ascii)");
QStringList wellPathFilePaths = QFileDialog::getOpenFileNames(this, "Import Well Paths", defaultDir, "JSON Well Path (*.json);;ASCII Well Paths (*.asc *.asci *.ascii);;Dev Well Paths(*.dev);;All Files (*.*)");
if (wellPathFilePaths.size() < 1) return;