mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-24 22:27:36 +01:00
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
This commit is contained in:
parent
7b903febf9
commit
482e15a424
1 changed files with 4 additions and 6 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue