fix no-roll LTC encoder, honor locates when transport is stopped
[ardour.git] / libs / ardour / ardour / export_failed.h
index 37f572f3459484bd9baeebecc0bd5fa15a70c697..16687826b169689317f6fd8a69342156f7876dcb 100644 (file)
@@ -23,9 +23,6 @@
 
 #include <exception>
 #include <string>
-#include "pbd/error.h"
-
-#include "i18n.h"
 
 namespace ARDOUR
 {
@@ -33,12 +30,7 @@ namespace ARDOUR
 class ExportFailed : public std::exception
 {
   public:
-       ExportFailed (std::string const & reason)
-               : reason (reason.c_str())
-       {
-               PBD::error << string_compose (_("Export failed: %1"), reason) << endmsg;
-       }
-
+       ExportFailed (std::string const &);
        ~ExportFailed () throw() { }
 
        const char* what() const throw()