summaryrefslogtreecommitdiff
path: root/src/wx/content_timeline.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-12-13 23:01:23 +0100
committerCarl Hetherington <cth@carlh.net>2024-03-12 00:43:51 +0100
commit1910147fd58ac58a21b8f3b874495179aa5424ab (patch)
tree0a5931c2facdac574f11c5b47314e2600597aba8 /src/wx/content_timeline.cc
parentcc3a87b302581647330753a09815ca78c0a23fe4 (diff)
Rename TimelineView -> ContentTimelineView.
Diffstat (limited to 'src/wx/content_timeline.cc')
-rw-r--r--src/wx/content_timeline.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/content_timeline.cc b/src/wx/content_timeline.cc
index b650f8e92..368cbcca4 100644
--- a/src/wx/content_timeline.cc
+++ b/src/wx/content_timeline.cc
@@ -356,7 +356,7 @@ ContentTimeline::film_content_change(ChangeType type, int property, bool frequen
template <class T>
int
-place (shared_ptr<const Film> film, TimelineViewList& views, int& tracks)
+place(shared_ptr<const Film> film, ContentTimelineViewList& views, int& tracks)
{
int const base = tracks;
@@ -413,7 +413,7 @@ place (shared_ptr<const Film> film, TimelineViewList& views, int& tracks)
* order of first mapped DCP channel.
*/
struct AudioMappingComparator {
- bool operator()(shared_ptr<TimelineView> a, shared_ptr<TimelineView> b) {
+ bool operator()(shared_ptr<ContentTimelineView> a, shared_ptr<ContentTimelineView> b) {
int la = -1;
auto cva = dynamic_pointer_cast<TimelineAudioContentView>(a);
if (cva) {
@@ -519,7 +519,7 @@ ContentTimeline::setup_scrollbars()
}
-shared_ptr<TimelineView>
+shared_ptr<ContentTimelineView>
ContentTimeline::event_to_view(wxMouseEvent& ev)
{
/* Search backwards through views so that we find the uppermost one first */