MainWindow: Add selection_only parameter to export_file()
[pulseview.git] / pv / mainwindow.cpp
index c3f8fdb8bad914e19fd010a153fb1294c6b67df0..aca5acf3dde3c72c2935e181e7dae147ecd2f18f 100644 (file)
@@ -223,10 +223,13 @@ void MainWindow::select_device(shared_ptr<devices::Device> device)
        }
 }
 
-void MainWindow::export_file(shared_ptr<OutputFormat> format)
+void MainWindow::export_file(shared_ptr<OutputFormat> format,
+       bool selection_only)
 {
        using pv::dialogs::StoreProgress;
 
+       (void)selection_only;
+
        // Stop any currently running capture session
        session_.stop_capture();