summaryrefslogtreecommitdiff
path: root/libs/ardour/export_handler.cc
diff options
context:
space:
mode:
authorColin Fletcher <colin.m.fletcher@googlemail.com>2014-05-23 18:14:37 +0100
committerColin Fletcher <colin.m.fletcher@googlemail.com>2014-05-23 18:14:37 +0100
commit9daab3db8481de5653e97321c7bb2aa881f0d54c (patch)
tree651c946b0aab2b77be45bc46bbbaf8bf30c43fd2 /libs/ardour/export_handler.cc
parent2f6debf0d2b78bd6399f9e28e98333e1fd1b05d3 (diff)
Make Soundcloud upload applicable to any export format.
Add soundcloud_upload property back into ExportFormatSpecification, but instead of making it settable in the export format specification dialog, add a tick-box in each tab of ExportFileNotebook to allow setting it.
Diffstat (limited to 'libs/ardour/export_handler.cc')
-rw-r--r--libs/ardour/export_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc
index 716b69e0d8..cded56b439 100644
--- a/libs/ardour/export_handler.cc
+++ b/libs/ardour/export_handler.cc
@@ -345,7 +345,7 @@ ExportHandler::finish_timespan ()
delete (se);
}
- if (fmt->upload()) {
+ if (fmt->soundcloud_upload()) {
SoundcloudUploader *soundcloud_uploader = new SoundcloudUploader;
std::string token = soundcloud_uploader->Get_Auth_Token(upload_username, upload_password);
std::cerr