diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-12-27 23:52:12 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-12-27 23:52:12 +0100 |
| commit | f5e65d5f27f00d01d2f5d6b4d9390910713572f9 (patch) | |
| tree | a88bef90461ca8aa66e3095d38e08eaa067f5dd6 /src/wx | |
| parent | 95f095c27f98ac61e126540c27627107994af34f (diff) | |
Use some more auto.
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/closed_captions_dialog.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/closed_captions_dialog.cc b/src/wx/closed_captions_dialog.cc index 464d49d82..90c73c75e 100644 --- a/src/wx/closed_captions_dialog.cc +++ b/src/wx/closed_captions_dialog.cc @@ -177,7 +177,7 @@ ClosedCaptionsDialog::update() auto track = _tracks[_track->GetSelection()]; if (butler) { while (true) { - optional<TextRingBuffers::Data> d = butler->get_closed_caption(); + auto d = butler->get_closed_caption(); if (!d) { break; } |
