]> sigrok.org Git - pulseview.git/blobdiff - pv/dialogs/storeprogress.cpp
Session: Fix issue #67 by improving error handling
[pulseview.git] / pv / dialogs / storeprogress.cpp
index 8699ccefdfbcca6fe2bae451f9c34072d0848717..0bcfbf2c75ca772510068b0309a4053e74fef5a3 100644 (file)
@@ -50,6 +50,7 @@ StoreProgress::StoreProgress(const QString &file_name,
                this, SLOT(on_progress_updated()));
        connect(&session_, SIGNAL(store_successful()),
                &session, SLOT(on_data_saved()));
+       connect(this, SIGNAL(canceled()), this, SLOT(on_cancel()));
 
        // Since we're not setting any progress in case of an error, the dialog
        // will pop up after the minimumDuration time has been reached - 4000 ms
@@ -112,10 +113,17 @@ void StoreProgress::on_progress_updated()
                setMaximum(p.second);
        } else {
                const QString err = session_.error();
-               if (!err.isEmpty() && !showing_error_)
+               if (err.isEmpty())
+                       close();
+               else if (!showing_error_)
                        show_error();
        }
 }
 
+void StoreProgress::on_cancel()
+{
+       session_.cancel();
+}
+
 }  // namespace dialogs
 }  // namespace pv