diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-05-19 23:27:18 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-05-19 23:27:18 +0200 |
| commit | 60d53efe2cb3bddf98ca3cba937247a8024e7d63 (patch) | |
| tree | bb865efc89153122b85e8edc540b320b6209bfdf | |
| parent | 7f6cc5c6e151c32fce94181689cf740a011feafb (diff) | |
Cleanup: use auto.
| -rw-r--r-- | src/wx/timeline_audio_content_view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/timeline_audio_content_view.cc b/src/wx/timeline_audio_content_view.cc index 057ebb944..0e9701034 100644 --- a/src/wx/timeline_audio_content_view.cc +++ b/src/wx/timeline_audio_content_view.cc @@ -68,7 +68,7 @@ TimelineAudioContentView::label () const s += wxString::Format (_(" advanced by %dms"), -ac->delay()); } - list<int> mapped = ac->mapping().mapped_output_channels(); + auto mapped = ac->mapping().mapped_output_channels(); if (!mapped.empty ()) { s += wxString::FromUTF8(" → "); for (auto i: mapped) { |
