Don't really need the details of filename in the analyse audio job name.
authorCarl Hetherington <cth@carlh.net>
Sun, 28 Jul 2013 12:58:59 +0000 (13:58 +0100)
committerCarl Hetherington <cth@carlh.net>
Sun, 28 Jul 2013 12:58:59 +0000 (13:58 +0100)
src/lib/analyse_audio_job.cc

index 9939220149d16986bcfbaa1e33daebbac6e780fd..8186f9de49b9d89baa81c04d7f454f876b8de963 100644 (file)
@@ -45,12 +45,7 @@ AnalyseAudioJob::AnalyseAudioJob (shared_ptr<const Film> f, shared_ptr<AudioCont
 string
 AnalyseAudioJob::name () const
 {
-       shared_ptr<AudioContent> content = _content.lock ();
-       if (!content) {
-               return "";
-       }
-       
-       return String::compose (_("Analyse audio of %1"), content->path().filename().string());
+       return _("Analyse audio");
 }
 
 void