diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-14 13:22:47 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-14 13:22:47 +0100 |
| commit | 27fac0b4c6d42cb3b47bc1240d50ce11923fb66a (patch) | |
| tree | c59025745f30ef51157304c77f82ac56112ca316 /src/lib/subtitle.h | |
| parent | 429e42c019889e90c9e376170b08614654231337 (diff) | |
Simplify use of Image hierarchy a bit.
Diffstat (limited to 'src/lib/subtitle.h')
| -rw-r--r-- | src/lib/subtitle.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/subtitle.h b/src/lib/subtitle.h index 0b82320a1..d9717564e 100644 --- a/src/lib/subtitle.h +++ b/src/lib/subtitle.h @@ -23,7 +23,7 @@ struct AVSubtitle; class SubtitleImage; -class SimpleImage; +class Image; class FilmState; class Subtitle @@ -64,11 +64,11 @@ public: return _position; } - boost::shared_ptr<SimpleImage> image () const { + boost::shared_ptr<Image> image () const { return _image; } private: Position _position; - boost::shared_ptr<SimpleImage> _image; + boost::shared_ptr<Image> _image; }; |
