]> sigrok.org Git - pulseview.git/commitdiff
Added All Files to the open file filter list
authorJoel Holdsworth <redacted>
Sun, 12 May 2013 15:11:43 +0000 (16:11 +0100)
committerJoel Holdsworth <redacted>
Sun, 19 May 2013 08:45:59 +0000 (09:45 +0100)
pv/mainwindow.cpp

index 7320bf1aa740a488fe014d6e10aac2ba66621aab..b916999fb9bd2a1fcfd2c691f5aa89a6081f15ba 100644 (file)
@@ -269,9 +269,13 @@ void MainWindow::show_session_error(
 
 void MainWindow::on_actionOpen_triggered()
 {
 
 void MainWindow::on_actionOpen_triggered()
 {
+       // Enumerate the file formats
+       QString filters(tr("Sigrok Sessions (*.sr)"));
+       filters.append(tr(";;All Files (*.*)"));
+
+       // Show the dialog
        const QString file_name = QFileDialog::getOpenFileName(
        const QString file_name = QFileDialog::getOpenFileName(
-               this, tr("Open File"), "",
-               tr("Sigrok Sessions (*.sr)"));
+               this, tr("Open File"), "", filters);
        if (!file_name.isEmpty())
                load_file(file_name);
 }
        if (!file_name.isEmpty())
                load_file(file_name);
 }