diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-03-03 20:37:49 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-03-04 00:43:03 +0100 |
| commit | 7c00e7a8c5f0e543000dd62ce8c66fdb8da6ee34 (patch) | |
| tree | 7577cbb0952629eb867549733895ebe2225bb739 /src/lib/content_text.h | |
| parent | 54010eb460cb1038ded4177154fa63947f766a05 (diff) | |
Cleanup: use some better variable names.
Diffstat (limited to 'src/lib/content_text.h')
| -rw-r--r-- | src/lib/content_text.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/content_text.h b/src/lib/content_text.h index 51d4e8009..8a7f007ef 100644 --- a/src/lib/content_text.h +++ b/src/lib/content_text.h @@ -57,9 +57,9 @@ public: : ContentText(from) {} - ContentBitmapText (dcpomatic::ContentTime f, std::shared_ptr<const Image> im, dcpomatic::Rect<double> r) - : ContentText (f) - , subs{ {im, r} } + ContentBitmapText(dcpomatic::ContentTime from, std::shared_ptr<const Image> image, dcpomatic::Rect<double> rect) + : ContentText(from) + , subs{ {image, rect} } {} /* Our texts, with their rectangles unmodified by any offsets or scales that the content specifies */ |
