summaryrefslogtreecommitdiff
path: root/libs/ardour/export_profile_manager.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-07-16 01:35:43 +0200
committerRobin Gareus <robin@gareus.org>2016-07-16 02:14:27 +0200
commit9eaced4c9d2db5e080e5fa5228616917ccac211c (patch)
tree929d940e2780a8e99ffa8bea83c4f49f73cf7d4c /libs/ardour/export_profile_manager.cc
parentf8a6213454c7a0a80114ffa01c8ce432b19f4617 (diff)
allow to query export profile type
Diffstat (limited to 'libs/ardour/export_profile_manager.cc')
-rw-r--r--libs/ardour/export_profile_manager.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/export_profile_manager.cc b/libs/ardour/export_profile_manager.cc
index f924ed17e5..be9cdd67d2 100644
--- a/libs/ardour/export_profile_manager.cc
+++ b/libs/ardour/export_profile_manager.cc
@@ -58,7 +58,7 @@ namespace ARDOUR
{
ExportProfileManager::ExportProfileManager (Session & s, ExportType type)
- : type(type)
+ : _type(type)
, handler (s.get_export_handler())
, session (s)
@@ -162,7 +162,7 @@ ExportProfileManager::prepare_for_export ()
}
// ...and each channel config
- filename->include_channel_config = (type == StemExport) ||
+ filename->include_channel_config = (_type == StemExport) ||
(channel_configs.size() > 1);
for(ChannelConfigStateList::iterator cc_it = channel_configs.begin(); cc_it != channel_configs.end(); ++cc_it) {
handler->add_export_config (*ts_it, (*cc_it)->config, (*format_it)->format, filename, b);