X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fstring_text_file.cc;h=793619003aab29cfdee6ec0170ef440c4b63ad3d;hp=d3c56832dfb85a40ccc979b6d85a7b1cdf13779d;hb=6fa9748f382302fa88292b4219598bb81edc7bd0;hpb=b639b7b20f1ab341194bcd5c76700ca419254d11 diff --git a/src/lib/string_text_file.cc b/src/lib/string_text_file.cc index d3c56832d..793619003 100644 --- a/src/lib/string_text_file.cc +++ b/src/lib/string_text_file.cc @@ -38,7 +38,7 @@ using std::string; using boost::shared_ptr; using boost::scoped_array; using boost::optional; -using dcp::Data; +using dcp::ArrayData; using namespace dcpomatic; StringTextFile::StringTextFile (shared_ptr content) @@ -64,11 +64,11 @@ StringTextFile::StringTextFile (shared_ptr content) } else { /* Text-based file; sort out its character encoding before we try to parse it */ - Data in (content->path (0)); + ArrayData in (content->path (0)); UErrorCode status = U_ZERO_ERROR; UCharsetDetector* detector = ucsdet_open (&status); - ucsdet_setText (detector, reinterpret_cast (in.data().get()), in.size(), &status); + ucsdet_setText (detector, reinterpret_cast(in.data()), in.size(), &status); UCharsetMatch const * match = ucsdet_detect (detector, &status); char const * in_charset = ucsdet_getName (match, &status); @@ -78,7 +78,7 @@ StringTextFile::StringTextFile (shared_ptr content) scoped_array utf16 (new uint16_t[in.size() * 2]); int const utf16_len = ucnv_toUChars ( to_utf16, reinterpret_cast(utf16.get()), in.size() * 2, - reinterpret_cast (in.data().get()), in.size(), + reinterpret_cast(in.data()), in.size(), &status );