X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Frb_effect.cc;h=804b79f87df9e8a555adcbe56bb0a844279e5f8e;hb=5f00d2f3a7afaccaeb9f3057d55d5e1e59c54e47;hp=7ff60e6912f0976f0369c462b8989c62d83b8e55;hpb=6fa6514cfdb0ce38d93b51197f599dfd091bad1d;p=ardour.git diff --git a/libs/ardour/rb_effect.cc b/libs/ardour/rb_effect.cc index 7ff60e6912..804b79f87d 100644 --- a/libs/ardour/rb_effect.cc +++ b/libs/ardour/rb_effect.cc @@ -20,8 +20,9 @@ #include #include +#include + #include "pbd/error.h" -#include "rubberband/RubberBandStretcher.h" #include "ardour/audioregion.h" #include "ardour/audiosource.h" @@ -329,7 +330,7 @@ RBEffect::run (boost::shared_ptr r, Progress* progress) } } catch (runtime_error& err) { - error << _("timefx code failure. please notify ardour-developers.") << endmsg; + error << string_compose (_("programming error: %1"), X_("timefx code failure")) << endmsg; error << err.what() << endmsg; goto out; } @@ -388,8 +389,6 @@ RBEffect::run (boost::shared_ptr r, Progress* progress) } } - tsr.done = true; - return ret; }