summaryrefslogtreecommitdiff
path: root/src/lib/user_property.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-08-11 12:49:23 +0100
committerCarl Hetherington <cth@carlh.net>2016-08-12 09:14:06 +0100
commit94056bf7f8fdef32da3cd78eff68d58560b4e6be (patch)
tree937fad363dc94d65ec20fa2ff7aa3b303310d80f /src/lib/user_property.h
parent73654117144c6de0ec4efe39ddc88485df546cc9 (diff)
Replace incorrect uses of raw_convert with a new locale_convert.
Diffstat (limited to 'src/lib/user_property.h')
-rw-r--r--src/lib/user_property.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/user_property.h b/src/lib/user_property.h
index 6e147fd76..8b69b7687 100644
--- a/src/lib/user_property.h
+++ b/src/lib/user_property.h
@@ -21,7 +21,7 @@
#ifndef DCPOMATIC_USER_PROPERTY_H
#define DCPOMATIC_USER_PROPERTY_H
-#include <dcp/raw_convert.h>
+#include "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 (dcp::raw_convert<std::string> (value_))
+ , value (locale_convert<std::string> (value_))
, unit (unit_)
{}