From aae367b63c9b619db1e40f27dc334c6987219481 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 19 Dec 2009 20:26:31 +0000 Subject: use new syntax for connecting to backend signals that enforces explicit connection scope, plus a few other related matters git-svn-id: svn://localhost/ardour2/branches/3.0@6376 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/pbd/pbd/destructible.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/pbd/pbd/destructible.h') diff --git a/libs/pbd/pbd/destructible.h b/libs/pbd/pbd/destructible.h index 241d847aff..8cc0113ff7 100644 --- a/libs/pbd/pbd/destructible.h +++ b/libs/pbd/pbd/destructible.h @@ -20,7 +20,7 @@ #ifndef __pbd_destructible_h__ #define __pbd_destructible_h__ -#include +#include "pbd/signals.h" namespace PBD { @@ -29,7 +29,7 @@ class Destructible { Destructible() : refs_dropped (false){} virtual ~Destructible () {} - boost::signals2::signal GoingAway; + PBD::Signal0 GoingAway; void drop_references () { if (!refs_dropped) { GoingAway(); } refs_dropped = true; } private: -- cgit v1.2.3