Respond to MMC even when synced to JACK. Fixes #3700.
[ardour.git] / libs / ardour / export_status.cc
index c64a03fe23776ce5ecfc10549b26e935ba59de6f..eb0a3504b45e0e19a372eba79add08467c710026 100644 (file)
@@ -18,7 +18,7 @@
 
 */
 
-#include <ardour/export_status.h>
+#include "ardour/export_status.h"
 
 namespace ARDOUR
 {
@@ -34,18 +34,38 @@ ExportStatus::init ()
        stop = false;
        running = false;
        _aborted = false;
-       
+       _finished = false;
+       _errors = false;
+
        stage = export_None;
        progress = 0.0;
-       
+
        total_timespans = 0;
        timespan = 0;
-       
+
        total_channel_configs = 0;
        channel_config = 0;
-       
+
        total_formats = 0;
        format = 0;
 }
 
+void
+ExportStatus::abort (bool error_occurred)
+{
+       _aborted = true;
+       _finished = true;
+       _errors = _errors || error_occurred;
+       running = false;
+       Aborting ();
+}
+
+void
+ExportStatus::finish ()
+{
+       _finished = true;
+       running = false;
+       Finished();
+}
+
 } // namespace ARDOUR