Revert "derive TriggerUI from sigc::trackable so that it can be automically disconnected from signals"

This reverts commit 06eb154db2.
This commit is contained in:
Paul Davis 2022-02-21 13:40:56 -07:00
parent 06eb154db2
commit 87bcd4d83b
2 changed files with 3 additions and 3 deletions

View File

@ -132,8 +132,8 @@ TriggerUI::trigger_swap (uint32_t n)
}
trigger_connections.drop_connections ();
trigger()->PropertyChanged.connect (trigger_connections, invalidator (*this), boost::bind (&TriggerUI::trigger_changed, this, _1), gui_context ());
tref.box->PropertyChanged.connect (trigger_connections, invalidator (*this), boost::bind (&TriggerUI::trigger_changed, this, _1), gui_context ());
trigger()->PropertyChanged.connect (trigger_connections, MISSING_INVALIDATOR, boost::bind (&TriggerUI::trigger_changed, this, _1), gui_context ());
tref.box->PropertyChanged.connect (trigger_connections, MISSING_INVALIDATOR, boost::bind (&TriggerUI::trigger_changed, this, _1), gui_context ());
trigger_changed (Properties::name);
}

View File

@ -37,7 +37,7 @@ namespace Gtk
class TriggerJumpDialog;
class TriggerUI : virtual public sigc::trackable
class TriggerUI
{
public:
TriggerUI ();