From 5bb1c01482e0e4890da2f64e40cd012025a2d02f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 3 Jul 2021 19:01:27 -0600 Subject: [PATCH] fix timeline types (post-rebase conflict resolution) --- libs/ardour/source.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/source.cc b/libs/ardour/source.cc index ec1d1ef323..e76ee95d92 100644 --- a/libs/ardour/source.cc +++ b/libs/ardour/source.cc @@ -282,7 +282,7 @@ Source::set_cue_state (XMLNode const & cues, int /* version */) for (XMLNodeConstIterator citer = cuelist.begin(); citer != cuelist.end(); ++citer) { string text; - samplepos_t position; + timepos_t position; if (!(*citer)->get_property (X_("text"), text) || !(*citer)->get_property (X_("position"), position)) { continue;