From: Carl Hetherington Date: Wed, 6 Jul 2022 08:51:04 +0000 (+0200) Subject: Improve a variable name. X-Git-Tag: v2.16.19~16 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=e7efb7d651d4555ed8dd2b3c4980b5222d1e0521 Improve a variable name. --- diff --git a/src/lib/dcp_subtitle_decoder.cc b/src/lib/dcp_subtitle_decoder.cc index 4743ecf42..08c2bf7ec 100644 --- a/src/lib/dcp_subtitle_decoder.cc +++ b/src/lib/dcp_subtitle_decoder.cc @@ -41,9 +41,9 @@ DCPSubtitleDecoder::DCPSubtitleDecoder (shared_ptr film, shared_ptr< : Decoder (film) { /* Load the XML or MXF file */ - auto const c = load (content->path(0)); - c->fix_empty_font_ids (); - _subtitles = c->subtitles (); + auto const asset = load (content->path(0)); + asset->fix_empty_font_ids (); + _subtitles = asset->subtitles (); _next = _subtitles.begin (); text.push_back (make_shared(this, content->only_text()));