summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-01-16 21:22:46 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-01-16 21:22:46 +0000
commit045e14b8df04da35afead04da491aad45970d7da (patch)
tree0a495b350e0ef5eb2c195c06e6f3f24305b90a72
parent1eac1188ab5e4a1342c153ec97f0a13a85fd0550 (diff)
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
-rw-r--r--libs/ardour/ardour/session.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h
index 1d8ef51453..124d48ac13 100644
--- a/libs/ardour/ardour/session.h
+++ b/libs/ardour/ardour/session.h
@@ -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);