summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-05-19 23:27:18 +0200
committerCarl Hetherington <cth@carlh.net>2024-05-19 23:27:18 +0200
commit60d53efe2cb3bddf98ca3cba937247a8024e7d63 (patch)
treebb865efc89153122b85e8edc540b320b6209bfdf
parent7f6cc5c6e151c32fce94181689cf740a011feafb (diff)
Cleanup: use auto.
-rw-r--r--src/wx/timeline_audio_content_view.cc2
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) {