diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-11-05 00:43:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-11-05 00:43:00 +0100 |
| commit | 5d1496fa502655d334439b4b2658625a2b3c1b70 (patch) | |
| tree | defaa6e2074a4e3fd93dae5c3899c51a12866a65 /src/lib/text_content.h | |
| parent | d50c23b8ddc05953322d2d0eb6ca5cb8ad88645f (diff) | |
C++11 tidying.
Diffstat (limited to 'src/lib/text_content.h')
| -rw-r--r-- | src/lib/text_content.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/text_content.h b/src/lib/text_content.h index d3e9b564b..66bedecf5 100644 --- a/src/lib/text_content.h +++ b/src/lib/text_content.h @@ -132,7 +132,7 @@ public: return _y_scale; } - std::list<std::shared_ptr<dcpomatic::Font> > fonts () const { + std::list<std::shared_ptr<dcpomatic::Font>> fonts () const { boost::mutex::scoped_lock lm (_mutex); return _fonts; } @@ -221,7 +221,7 @@ private: double _x_scale; /** y scale factor to apply to subtitles */ double _y_scale; - std::list<std::shared_ptr<dcpomatic::Font> > _fonts; + std::list<std::shared_ptr<dcpomatic::Font>> _fonts; boost::optional<dcp::Colour> _colour; boost::optional<dcp::Effect> _effect; boost::optional<dcp::Colour> _effect_colour; |
