Accessor for ClosedCaptionsDialog.
[dcpomatic.git] / src / lib / user_property.h
index a7a6f63da2336f6eece25b5e4dd994df669cc65f..ffbb99a5f4b81f1f19f233607eab59241da23715 100644 (file)
@@ -21,7 +21,7 @@
 #ifndef DCPOMATIC_USER_PROPERTY_H
 #define DCPOMATIC_USER_PROPERTY_H
 
-#include "raw_convert.h"
+#include <dcp/locale_convert.h>
 
 class UserProperty
 {
@@ -37,7 +37,7 @@ public:
        UserProperty (Category category_, std::string key_, T value_, std::string unit_ = "")
                : category (category_)
                , key (key_)
-               , value (raw_convert<std::string> (value_))
+               , value (dcp::locale_convert<std::string> (value_))
                , unit (unit_)
        {}