Remove unused Film::content_paths_valid; fix ImageDecoder to throw an OpenFileError...
[dcpomatic.git] / src / lib / playlist.cc
index 37b2902189f2b32d61a94a57bbc0baa36c7f0a28..daa82cb94a56e305dc3420424f15e2d7a4f1cf41 100644 (file)
@@ -389,15 +389,3 @@ Playlist::move_later (shared_ptr<Content> c)
        
        Changed ();
 }
-
-bool
-Playlist::content_paths_valid () const
-{
-       for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) {
-               if (!(*i)->path_valid ()) {
-                       return false;
-               }
-       }
-
-       return true;
-}