Replace PBD::Signals (1/2)

This commit is contained in:
Robin Gareus 2024-10-18 18:01:28 +02:00
parent 5808ab5608
commit 2d7cce44f1
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
163 changed files with 519 additions and 519 deletions

View file

@ -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;