From 482e15a424a6bbbcf23928141d02a9e14cf46a07 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 9 May 2012 18:16:12 +0000 Subject: [PATCH] correct cut-n-paste error in new comments for signals.h git-svn-id: svn://localhost/ardour2/branches/3.0@12230 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/pbd/pbd/signals.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/libs/pbd/pbd/signals.h b/libs/pbd/pbd/signals.h index 7e51ff2a27..cfada19879 100644 --- a/libs/pbd/pbd/signals.h +++ b/libs/pbd/pbd/signals.h @@ -76,9 +76,8 @@ public: Signal0 () {} typedef boost::signals2::signal SignalType; - /** Arrange for @a slot to be executed in the context of @a event_loop - whenever this signal is emitted. Store the connection that represents - this arrangement to @a c. + /** Arrange for @a slot to be executed whenever this signal is emitted. + Store the connection that represents this arrangement in @a c. NOTE: @a slot will be executed in the same thread that the signal is emitted in. @@ -89,9 +88,8 @@ public: c = _signal.connect (slot); } - /** Arrange for @a slot to be executed in the context of @a event_loop - whenever this signal is emitted. Add the connection that represents - this arrangement to @a clist. + /** Arrange for @a slot to be executed whenever this signal is emitted. + Add the connection that represents this arrangement to @a clist. NOTE: @a slot will be executed in the same thread that the signal is emitted in.