summaryrefslogtreecommitdiff
path: root/libs/ardour/export_status.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-12-06 19:56:33 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-12-06 19:56:33 +0000
commit9884773eea9764b6dacd3ade6a1d49cf389fe398 (patch)
treeb46b3e936a09bf40954c6b3f00ebc7f59f632723 /libs/ardour/export_status.cc
parent27bfb0f9e2db321d9596912ed95ccb6bcd00bc57 (diff)
various fixes for exporting, including correct handling of errors during export which previously would hang when using jack1 because jack_set_freewheel() was called from inside a process() callback; use shared_ptr<Route> in parts of export code that weren't using them before; fix up generation of export filenames so that Glib::build_filename() is used and non-existent folders are ignored
git-svn-id: svn://localhost/ardour2/branches/3.0@13610 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/export_status.cc')
-rw-r--r--libs/ardour/export_status.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/ardour/export_status.cc b/libs/ardour/export_status.cc
index 70ce8dd27e..0f7938bb7f 100644
--- a/libs/ardour/export_status.cc
+++ b/libs/ardour/export_status.cc
@@ -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