Rename _size -> _video_size
[dcpomatic.git] / src / wx / timeline_audio_content_view.cc
index d26c4025256934650ded8ef3dd2028ae27972ee6..057ebb944b8b8d632b53c36ba93410fe3a4cbb85 100644 (file)
@@ -70,8 +70,8 @@ TimelineAudioContentView::label () const
 
        list<int> mapped = ac->mapping().mapped_output_channels();
        if (!mapped.empty ()) {
-               s += " → ";
-               BOOST_FOREACH (int i, mapped) {
+               s += wxString::FromUTF8(" → ");
+               for (auto i: mapped) {
                        s += std_to_wx(short_audio_channel_name(i)) + ", ";
                }
                s = s.Left(s.Length() - 2);