Merge branch 'master' into saveas
[ardour.git] / libs / ardour / export_status.cc
index 70ce8dd27e96b286325d5bb3f77e0433403af032..0f7938bb7f2cb3d4a0ab31297cf96e862a882e86 100644 (file)
@@ -18,6 +18,8 @@
 
 */
 
+#include <pbd/stacktrace.h>
+
 #include "ardour/export_status.h"
 
 namespace ARDOUR
@@ -59,7 +61,6 @@ ExportStatus::abort (bool error_occurred)
        _finished = true;
        _errors = _errors || error_occurred;
        running = false;
-       Aborting ();
 }
 
 void
@@ -67,7 +68,7 @@ ExportStatus::finish ()
 {
        _finished = true;
        running = false;
-       Finished();
+       Finished(); /* EMIT SIGNAL */
 }
 
 } // namespace ARDOUR