diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-10-30 00:50:57 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-02 00:12:56 +0100 |
| commit | da15bff6e278d351301c9c50a4c96737ae4b5545 (patch) | |
| tree | 86057f3d8cbca41130fe170791ef341e18bc6283 /src/subtitle_image.cc | |
| parent | ec82ce2d44d5ba492a3dfa6e740ff21549d438e1 (diff) | |
Rename Data -> ArrayData.
Diffstat (limited to 'src/subtitle_image.cc')
| -rw-r--r-- | src/subtitle_image.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/subtitle_image.cc b/src/subtitle_image.cc index e1f123bc..d8215850 100644 --- a/src/subtitle_image.cc +++ b/src/subtitle_image.cc @@ -39,7 +39,7 @@ using std::string; using namespace dcp; SubtitleImage::SubtitleImage ( - Data png_image, + ArrayData png_image, Time in, Time out, float h_position, @@ -57,7 +57,7 @@ SubtitleImage::SubtitleImage ( } SubtitleImage::SubtitleImage ( - Data png_image, + ArrayData png_image, string id, Time in, Time out, @@ -79,7 +79,7 @@ void SubtitleImage::read_png_file (boost::filesystem::path file) { _file = file; - _png_image = Data (file); + _png_image = ArrayData (file); } void |
