summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export_format_specification.h
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/ardour/export_format_specification.h
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/ardour/export_format_specification.h')
-rw-r--r--libs/ardour/ardour/export_format_specification.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/libs/ardour/ardour/export_format_specification.h b/libs/ardour/ardour/export_format_specification.h
index d41fe3e97a..26d28648a2 100644
--- a/libs/ardour/ardour/export_format_specification.h
+++ b/libs/ardour/ardour/export_format_specification.h
@@ -96,7 +96,6 @@ class LIBARDOUR_API ExportFormatSpecification : public ExportFormatBase {
void set_tag (bool tag_it) { _tag = tag_it; }
void set_with_cue (bool yn) { _with_cue = yn; }
void set_with_toc (bool yn) { _with_toc = yn; }
- void set_upload (bool yn) { _upload = yn; }
void set_command (std::string command) { _command = command; }
void set_silence_beginning (AnyTime const & value) { _silence_beginning = value; }
@@ -127,7 +126,6 @@ class LIBARDOUR_API ExportFormatSpecification : public ExportFormatBase {
float normalize_target () const { return _normalize_target; }
bool with_toc() const { return _with_toc; }
bool with_cue() const { return _with_cue; }
- bool upload() const { return _upload; }
std::string command() const { return _command; }
bool tag () const { return _tag && supports_tagging; }
@@ -178,7 +176,6 @@ class LIBARDOUR_API ExportFormatSpecification : public ExportFormatBase {
float _normalize_target;
bool _with_toc;
bool _with_cue;
- bool _upload;
std::string _command;
/* serialization helpers */