Hand-apply 2ee558ec90623b570360e8e55c918b5bb37f9aac from master; various snapping...
[dcpomatic.git] / src / lib / image_content.cc
index 4073cd52c7facf71117f43b3d33a0c044359d01e..a9cb148c2447920a1db51a8964937fc12d8cffa0 100644 (file)
@@ -29,6 +29,8 @@
 
 #include "i18n.h"
 
+#include "image_filename_sorter.cc"
+
 using std::string;
 using std::cout;
 using boost::shared_ptr;
@@ -57,12 +59,12 @@ ImageContent::ImageContent (shared_ptr<const Film> f, boost::filesystem::path p)
                        throw FileError (_("No valid image files were found in the folder."), p);
                }
                                
-               sort (_paths.begin(), _paths.end());
+               sort (_paths.begin(), _paths.end(), ImageFilenameSorter ());
        }
 
        if (have_j2k) {
                /* We default to no colour conversion if we have JPEG2000 files */
-               unset_colour_conversion ();
+               unset_colour_conversion (false);
        }
 }