From 0569107ddc0d2a8df6ca0a2c8cc16ebe8f3dee99 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 13 May 2009 21:34:09 +0000 Subject: more work on the new all-Processor-all-The-Time redesign of Route - LOTS OF BREAKAGE STILL EXPECTED ; change all(?) methods that pass a start/end frame in to use sframes_t not nframes_t git-svn-id: svn://localhost/ardour2/branches/3.0@5074 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/track.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libs/ardour/track.cc') diff --git a/libs/ardour/track.cc b/libs/ardour/track.cc index 1e344403b1..fd9267ede4 100644 --- a/libs/ardour/track.cc +++ b/libs/ardour/track.cc @@ -214,8 +214,8 @@ Track::set_name (const string& str) } /* save state so that the statefile fully reflects any filename changes */ - - if ((ret = IO::set_name (str)) == 0) { + + if ((ret = Route::set_name (str)) == 0) { _session.save_state (""); } @@ -238,8 +238,8 @@ Track::zero_diskstream_id_in_xml (XMLNode& node) } int -Track::no_roll (nframes_t nframes, nframes_t start_frame, nframes_t end_frame, - bool session_state_changing, bool can_record, bool rec_monitors_input) +Track::no_roll (nframes_t nframes, sframes_t start_frame, sframes_t end_frame, + bool session_state_changing, bool can_record, bool rec_monitors_input) { if (n_outputs().n_total() == 0) { return 0; @@ -324,8 +324,8 @@ Track::no_roll (nframes_t nframes, nframes_t start_frame, nframes_t end_frame, } int -Track::silent_roll (nframes_t nframes, nframes_t start_frame, nframes_t end_frame, - bool can_record, bool rec_monitors_input) +Track::silent_roll (nframes_t nframes, sframes_t start_frame, sframes_t end_frame, + bool can_record, bool rec_monitors_input) { if (n_outputs().n_total() == 0 && _processors.empty()) { return 0; -- cgit v1.2.3