X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsubtitle_content.cc;h=783c73e254aaa75b743adae6b5c5851b84d4b3b7;hb=308488324dbc4d8b709d3fb1dc9fee0479346c21;hp=4c6e601926d2ebf096450a443ee7560bda152fba;hpb=2c0478d2b33906845b9d910668b12fe3e8f03a7c;p=dcpomatic.git diff --git a/src/lib/subtitle_content.cc b/src/lib/subtitle_content.cc index 4c6e60192..783c73e25 100644 --- a/src/lib/subtitle_content.cc +++ b/src/lib/subtitle_content.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2014 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,6 +18,7 @@ */ #include +#include #include "subtitle_content.h" #include "util.h" #include "exceptions.h" @@ -28,8 +29,8 @@ using std::string; using std::vector; using std::cout; using boost::shared_ptr; -using boost::lexical_cast; using boost::dynamic_pointer_cast; +using dcp::raw_convert; int const SubtitleContentProperty::SUBTITLE_X_OFFSET = 500; int const SubtitleContentProperty::SUBTITLE_Y_OFFSET = 501; @@ -50,8 +51,6 @@ SubtitleContent::SubtitleContent (shared_ptr f, shared_ptr= 7) { _subtitle_x_offset = node->number_child ("SubtitleXOffset"); _subtitle_y_offset = node->number_child ("SubtitleYOffset"); @@ -92,11 +91,9 @@ SubtitleContent::SubtitleContent (shared_ptr f, vectoradd_child("SubtitleXOffset")->add_child_text (lexical_cast (_subtitle_x_offset)); - root->add_child("SubtitleYOffset")->add_child_text (lexical_cast (_subtitle_y_offset)); - root->add_child("SubtitleScale")->add_child_text (lexical_cast (_subtitle_scale)); + root->add_child("SubtitleXOffset")->add_child_text (raw_convert (_subtitle_x_offset)); + root->add_child("SubtitleYOffset")->add_child_text (raw_convert (_subtitle_y_offset)); + root->add_child("SubtitleScale")->add_child_text (raw_convert (_subtitle_scale)); } void