CueEntry must inherit from sigc::trackable

It connects to the ParameterChanged (sigc++) signal, and to ensure automated
disconnection on object death, sigc::trackable is required in the
inheritance tree
This commit is contained in:
Paul Davis 2022-07-07 18:23:51 -06:00
parent 28279e120f
commit 15f67632ee
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ namespace ArdourCanvas
class Circle;
}
class CueEntry : public ArdourCanvas::Rectangle
class CueEntry : public ArdourCanvas::Rectangle, public sigc::trackable
{
public:
CueEntry (ArdourCanvas::Item* item, uint64_t cue_index);