Remove some unused methods.
[dcpomatic.git] / src / lib / film.cc
index 51f4c7156cb087fbc65240718375c80e9a9a5cfa..dbb73303c853b9b38a20e16b6cd1f06146b2fc74 100644 (file)
@@ -227,22 +227,6 @@ Film::internal_video_asset_filename () const
        return video_identifier() + ".mxf";
 }
 
-string
-Film::filename_safe_name () const
-{
-       string const n = name ();
-       string o;
-       for (size_t i = 0; i < n.length(); ++i) {
-               if (isalnum (n[i])) {
-                       o += n[i];
-               } else {
-                       o += "_";
-               }
-       }
-
-       return o;
-}
-
 boost::filesystem::path
 Film::audio_analysis_path () const
 {