diff --git a/gtk2_ardour/luasignal_syms.h b/gtk2_ardour/luasignal_syms.h index 0ab8189152..c89de5cd94 100644 --- a/gtk2_ardour/luasignal_syms.h +++ b/gtk2_ardour/luasignal_syms.h @@ -37,7 +37,7 @@ STATIC(FeedbackDetected, &ARDOUR::Session::FeedbackDetected, 0) STATIC(SuccessfulGraphSort, &ARDOUR::Session::SuccessfulGraphSort, 0) STATIC(StartTimeChanged, &ARDOUR::Session::StartTimeChanged, 1) STATIC(EndTimeChanged, &ARDOUR::Session::EndTimeChanged, 1) -STATIC(Exported, &ARDOUR::Session::Exported, 2) +STATIC(Exported, &ARDOUR::Session::Exported, 3) // stripable static globals STATIC(Change, &PresentationInfo::Change, 0) diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h index 8d093a46e9..842c100302 100644 --- a/libs/ardour/ardour/session.h +++ b/libs/ardour/ardour/session.h @@ -862,7 +862,7 @@ public: int start_audio_export (samplepos_t position, bool realtime = false, bool region_export = false); PBD::Signal1 ProcessExport; - static PBD::Signal2 Exported; + static PBD::Signal3 Exported; void add_source (boost::shared_ptr); void remove_source (boost::weak_ptr); diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc index 6537f0ef91..2a404bb438 100644 --- a/libs/ardour/export_handler.cc +++ b/libs/ardour/export_handler.cc @@ -376,7 +376,7 @@ ExportHandler::finish_timespan () * take that into account. */ for (auto const& f : graph_builder->exported_files ()) { - Session::Exported (current_timespan->name(), f); /* EMIT SIGNAL */ + Session::Exported (current_timespan->name(), f, config_map.begin()->second.format->reimport()); /* EMIT SIGNAL */ } while (config_map.begin() != timespan_bounds.second) { diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index a93f381f81..0c0db14c97 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -161,7 +161,7 @@ PBD::Signal3 Session::MissingFile; PBD::Signal1 Session::StartTimeChanged; PBD::Signal1 Session::EndTimeChanged; -PBD::Signal2 Session::Exported; +PBD::Signal3 Session::Exported; PBD::Signal1 > Session::AskAboutPlaylistDeletion; PBD::Signal0 Session::Quit; PBD::Signal0 Session::FeedbackDetected;