mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-18 04:36:30 +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
|
|
@ -32,10 +32,10 @@
|
|||
using namespace PBD;
|
||||
using namespace std;
|
||||
|
||||
PBD::Signal1<bool, std::weak_ptr<PBD::Controllable> > Controllable::StartLearning;
|
||||
PBD::Signal1<void, std::weak_ptr<PBD::Controllable> > Controllable::StopLearning;
|
||||
PBD::Signal1<void, std::weak_ptr<PBD::Controllable> > Controllable::GUIFocusChanged;
|
||||
PBD::Signal1<void, std::weak_ptr<PBD::Controllable> > Controllable::ControlTouched;
|
||||
PBD::Signal<bool(std::weak_ptr<PBD::Controllable> )> Controllable::StartLearning;
|
||||
PBD::Signal<void(std::weak_ptr<PBD::Controllable> )> Controllable::StopLearning;
|
||||
PBD::Signal<void(std::weak_ptr<PBD::Controllable> )> Controllable::GUIFocusChanged;
|
||||
PBD::Signal<void(std::weak_ptr<PBD::Controllable> )> Controllable::ControlTouched;
|
||||
|
||||
Glib::Threads::RWLock Controllable::registry_lock;
|
||||
Controllable::Controllables Controllable::registry;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue