X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fmainwindow.cpp;h=aca5acf3dde3c72c2935e181e7dae147ecd2f18f;hb=7d6984a5ccd1c7fee225240d7cfd5685796cfea0;hp=0184ef0937c2fd6029cbd0899c8d6719ed3899db;hpb=2220e94218298b208041c5e828595d9e1b842c88;p=pulseview.git diff --git a/pv/mainwindow.cpp b/pv/mainwindow.cpp index 0184ef0..aca5acf 100644 --- a/pv/mainwindow.cpp +++ b/pv/mainwindow.cpp @@ -134,6 +134,11 @@ QAction* MainWindow::action_save_as() const return action_save_as_; } +QAction* MainWindow::action_save_selection_as() const +{ + return action_save_selection_as_; +} + QAction* MainWindow::action_connect() const { return action_connect_; @@ -218,10 +223,13 @@ void MainWindow::select_device(shared_ptr device) } } -void MainWindow::export_file(shared_ptr format) +void MainWindow::export_file(shared_ptr format, + bool selection_only) { using pv::dialogs::StoreProgress; + (void)selection_only; + // Stop any currently running capture session session_.stop_capture();