X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Futil.cc;h=14dfd1fa558b6afa86c7dc03a2b05b139d9bce4d;hp=0eb14845d7da6dba601412a34c72544cd590db4b;hb=308488324dbc4d8b709d3fb1dc9fee0479346c21;hpb=cfdd68eb5fb0ef8423e860103ad4e5510994f1da diff --git a/src/lib/util.cc b/src/lib/util.cc index 0eb14845d..14dfd1fa5 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -37,7 +37,6 @@ #include #include #include -#include #include #include #ifdef DCPOMATIC_WINDOWS @@ -53,6 +52,7 @@ #include #include #include +#include extern "C" { #include #include @@ -101,9 +101,9 @@ using std::streampos; using std::set_terminate; using boost::shared_ptr; using boost::thread; -using boost::lexical_cast; using boost::optional; using dcp::Size; +using dcp::raw_convert; static boost::thread::id ui_thread; static boost::filesystem::path backtrace_file; @@ -687,14 +687,14 @@ int get_required_int (multimap const & kv, string k) { string const v = get_required_string (kv, k); - return lexical_cast (v); + return raw_convert (v); } float get_required_float (multimap const & kv, string k) { string const v = get_required_string (kv, k); - return lexical_cast (v); + return raw_convert (v); } string @@ -724,7 +724,7 @@ get_optional_int (multimap const & kv, string k) return 0; } - return lexical_cast (i->second); + return raw_convert (i->second); } /** Trip an assert if the caller is not in the UI thread */ @@ -761,25 +761,6 @@ audio_channel_name (int c) return channels[c]; } -LocaleGuard::LocaleGuard () - : _old (0) -{ - char const * old = setlocale (LC_NUMERIC, 0); - - if (old) { - _old = strdup (old); - if (strcmp (_old, "C")) { - setlocale (LC_NUMERIC, "C"); - } - } -} - -LocaleGuard::~LocaleGuard () -{ - setlocale (LC_NUMERIC, _old); - free (_old); -} - bool valid_image_file (boost::filesystem::path f) {