diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-12-15 00:32:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-03-12 00:43:51 +0100 |
| commit | e5b053031e94a273ed889cd9e309d7d41c33a70d (patch) | |
| tree | dae3a8fce4884955480bd1b05fa417928ea1be06 /src/wx/content_timeline.cc | |
| parent | 783680c0efae1934409e4c93796b5a6265198e17 (diff) | |
Rename TimelineAtmosContentView -> ContentTimelineAtmosView.
Diffstat (limited to 'src/wx/content_timeline.cc')
| -rw-r--r-- | src/wx/content_timeline.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/content_timeline.cc b/src/wx/content_timeline.cc index d5ed0f7bb..0f993108d 100644 --- a/src/wx/content_timeline.cc +++ b/src/wx/content_timeline.cc @@ -22,7 +22,7 @@ #include "content_timeline.h" #include "film_editor.h" #include "film_viewer.h" -#include "timeline_atmos_content_view.h" +#include "content_timeline_atmos_view.h" #include "timeline_audio_content_view.h" #include "timeline_labels_view.h" #include "timeline_reels_view.h" @@ -315,7 +315,7 @@ ContentTimeline::recreate_views() } if (i->atmos) { - _views.push_back (make_shared<TimelineAtmosContentView>(*this, i)); + _views.push_back(make_shared<ContentTimelineAtmosView>(*this, i)); } } @@ -457,7 +457,7 @@ ContentTimeline::assign_tracks() bool have_atmos = false; for (auto i: _views) { - auto cv = dynamic_pointer_cast<TimelineAtmosContentView>(i); + auto cv = dynamic_pointer_cast<ContentTimelineAtmosView>(i); if (cv) { cv->set_track (_tracks); have_atmos = true; |
