summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/signals.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-05-09 18:16:12 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-05-09 18:16:12 +0000
commit482e15a424a6bbbcf23928141d02a9e14cf46a07 (patch)
tree1b5427d30248bb4df330255a8b7cf83e5224065d /libs/pbd/pbd/signals.h
parent7b903febf96ae0e08c9f3ddd796c92032517a69a (diff)
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
Diffstat (limited to 'libs/pbd/pbd/signals.h')
-rw-r--r--libs/pbd/pbd/signals.h10
1 files 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<R()> 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.