mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Replace PBD::Signals (1/2)
This commit is contained in:
parent
5808ab5608
commit
2d7cce44f1
163 changed files with 519 additions and 519 deletions
|
|
@ -66,7 +66,7 @@ public:
|
|||
inline const Parameter& parameter() const { return _parameter; }
|
||||
|
||||
/** Emitted when the our ControlList is marked dirty */
|
||||
PBD::Signal0<void> ListMarkedDirty;
|
||||
PBD::Signal<void()> ListMarkedDirty;
|
||||
|
||||
protected:
|
||||
Parameter _parameter;
|
||||
|
|
|
|||
|
|
@ -362,11 +362,11 @@ public:
|
|||
bool in_write_pass () const;
|
||||
bool in_new_write_pass () { return new_write_pass; }
|
||||
|
||||
PBD::Signal0<void> WritePassStarted;
|
||||
PBD::Signal<void()> WritePassStarted;
|
||||
/** Emitted when mark_dirty() is called on this object */
|
||||
mutable PBD::Signal0<void> Dirty;
|
||||
mutable PBD::Signal<void()> Dirty;
|
||||
/** Emitted when our interpolation style changes */
|
||||
PBD::Signal1<void, InterpolationStyle> InterpolationChanged;
|
||||
PBD::Signal<void(InterpolationStyle)> InterpolationChanged;
|
||||
|
||||
bool operator!= (ControlList const &) const;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue