summaryrefslogtreecommitdiff
path: root/libs/ardour/export_format_specification.cc
diff options
context:
space:
mode:
authorColin Fletcher <colin.m.fletcher@googlemail.com>2014-05-21 17:52:42 +0100
committerColin Fletcher <colin.m.fletcher@googlemail.com>2014-05-23 17:42:35 +0100
commit2f6debf0d2b78bd6399f9e28e98333e1fd1b05d3 (patch)
treeb9c3500aca2b5ca13c8b2096d5c361a094b1c552 /libs/ardour/export_format_specification.cc
parent8ebd8a99abe3b18130c65ff3b3c9c7ed6fdd4c48 (diff)
Remove Soundcloud upload from export format specification
Remove the Soundcloud upload property from export formats - it doesn't belong there, since it's a thing which can apply (or not) to any format preset.
Diffstat (limited to 'libs/ardour/export_format_specification.cc')
-rw-r--r--libs/ardour/export_format_specification.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/libs/ardour/export_format_specification.cc b/libs/ardour/export_format_specification.cc
index 8b921519f7..5191146790 100644
--- a/libs/ardour/export_format_specification.cc
+++ b/libs/ardour/export_format_specification.cc
@@ -170,7 +170,6 @@ ExportFormatSpecification::ExportFormatSpecification (Session & s)
, _normalize_target (1.0)
, _with_toc (false)
, _with_cue (false)
- , _upload (false)
, _command ("")
{
format_ids.insert (F_None);
@@ -246,7 +245,6 @@ ExportFormatSpecification::get_state ()
root->add_property ("id", _id.to_s());
root->add_property ("with-cue", _with_cue ? "true" : "false");
root->add_property ("with-toc", _with_toc ? "true" : "false");
- root->add_property ("upload", _upload ? "true" : "false");
root->add_property ("command", _command);
node = root->add_child ("Encoding");
@@ -325,11 +323,6 @@ ExportFormatSpecification::set_state (const XMLNode & root)
_with_toc = false;
}
- if ((prop = root.property ("upload"))) {
- _upload = string_is_affirmative (prop->value());
- } else {
- _upload = false;
- }
if ((prop = root.property ("command"))) {
_command = prop->value();
@@ -606,10 +599,6 @@ ExportFormatSpecification::description (bool include_name)
components.push_back ("CUE");
}
- if (_upload) {
- components.push_back ("Upload");
- }
-
if (!_command.empty()) {
components.push_back ("+");
}