Fix some markup quotation marks.
[dcpomatic.git] / src / wx / export_video_file_dialog.cc
index 062fcc81f4732400104c63a845cc52499211393a..76731bdf58ad38b351541310e3e4267945270f29 100644 (file)
@@ -26,7 +26,7 @@
 DCPOMATIC_DISABLE_WARNINGS
 #include <wx/filepicker.h>
 DCPOMATIC_ENABLE_WARNINGS
-#include <boost/bind.hpp>
+#include <boost/bind/bind.hpp>
 
 using std::string;
 using boost::bind;
@@ -34,7 +34,7 @@ using boost::bind;
 #define FORMATS 2
 
 wxString format_names[] = {
-       _("ProRes"),
+       _("MOV / ProRes"),
        _("MP4 / H.264"),
 };
 
@@ -49,8 +49,8 @@ wxString format_extensions[] = {
 };
 
 ExportFormat formats[] = {
-       EXPORT_FORMAT_PRORES,
-       EXPORT_FORMAT_H264_AAC,
+       ExportFormat::PRORES,
+       ExportFormat::H264_AAC,
 };
 
 ExportVideoFileDialog::ExportVideoFileDialog (wxWindow* parent, string name)