From 94056bf7f8fdef32da3cd78eff68d58560b4e6be Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 11 Aug 2016 12:49:23 +0100 Subject: Replace incorrect uses of raw_convert with a new locale_convert. --- src/lib/content.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/lib/content.cc') diff --git a/src/lib/content.cc b/src/lib/content.cc index 0fd503edd..536036ff7 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -27,6 +27,7 @@ #include "content_factory.h" #include "exceptions.h" #include "film.h" +#include "locale_convert.h" #include "job.h" #include "compose.hpp" #include @@ -365,7 +366,7 @@ Content::add_properties (list& p) const UserProperty ( UserProperty::VIDEO, _("Frame rate"), - raw_convert (_video_frame_rate.get(), 5), + locale_convert (_video_frame_rate.get(), 5), _("frames per second") ) ); @@ -374,7 +375,7 @@ Content::add_properties (list& p) const UserProperty ( UserProperty::GENERAL, _("Prepared for video frame rate"), - raw_convert (_video_frame_rate.get(), 5), + locale_convert (_video_frame_rate.get(), 5), _("frames per second") ) ); -- cgit v1.2.3