a tiny change that fixes MMC (and other things) aborting capture-on-stop when they call Session::request_stop() - the arguments were reversed

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@6507 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2010-01-16 21:22:46 +00:00
parent 1eac1188ab
commit 045e14b8df

View file

@ -379,7 +379,7 @@ class Session : public PBD::StatefulDestructible
void request_roll_at_and_return (nframes_t start, nframes_t return_to);
void request_bounded_roll (nframes_t start, nframes_t end);
void request_stop (bool clear_state = true, bool abort = false);
void request_stop (bool abort = false, bool clear_state = true);
void request_locate (nframes_t frame, bool with_roll = false);
void request_transport_speed (float speed);
void request_play_loop (bool yn, bool leave_rolling = false);