summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export_failed.h
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2008-09-28 11:11:38 +0000
committerSakari Bergen <sakari.bergen@beatwaves.net>2008-09-28 11:11:38 +0000
commit6b50ba341da426805ce3c92609c0fa12c52b67ac (patch)
tree4ed20d3699613da5a952b09b7e9ef47ceb6b8610 /libs/ardour/ardour/export_failed.h
parent909995338c970e9f8f7a51886502640527f2061e (diff)
* Improved export error handling, streamlined ExportFailed
* Cleaned out export related visibility in Session, and simpified Session <--> export component communication in general * Removed export_status.h header dependency from session.h * Added check for libsndfile FLAC and Ogg Vorbis compatibility * Added ExportFileFactory, leading in cleaner code in ExportProcessor, and better extensibility for possible future non-libsndfile formats git-svn-id: svn://localhost/ardour2/branches/3.0@3818 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/export_failed.h')
-rw-r--r--libs/ardour/ardour/export_failed.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/libs/ardour/ardour/export_failed.h b/libs/ardour/ardour/export_failed.h
index de00fba87e..1b375f3cb8 100644
--- a/libs/ardour/ardour/export_failed.h
+++ b/libs/ardour/ardour/export_failed.h
@@ -35,9 +35,8 @@ namespace ARDOUR
class ExportFailed : public std::exception
{
public:
- ExportFailed (std::string const & reason, std::string const & description) :
- reason (reason.c_str()),
- description (description.c_str())
+ ExportFailed (std::string const & reason) :
+ reason (reason.c_str())
{
error << string_compose (_("Export failed: %1"), reason) << endmsg;
}
@@ -46,13 +45,12 @@ class ExportFailed : public std::exception
const char* what() const throw()
{
- return description;
+ return reason;
}
private:
const char * reason;
- const char * description;
};