From 9ce6db73368703afbd548ed20b886efcc2c27350 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 20 Apr 2011 03:37:59 +0000 Subject: Use std::list for DisconnectAll::_impls. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3180 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/events/DisconnectAll.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/engine/events/DisconnectAll.hpp') diff --git a/src/engine/events/DisconnectAll.hpp b/src/engine/events/DisconnectAll.hpp index 65c9599f..aae6f84d 100644 --- a/src/engine/events/DisconnectAll.hpp +++ b/src/engine/events/DisconnectAll.hpp @@ -18,7 +18,8 @@ #ifndef INGEN_EVENTS_DISCONNECTALL_HPP #define INGEN_EVENTS_DISCONNECTALL_HPP -#include "raul/List.hpp" +#include + #include "raul/Path.hpp" #include "Disconnect.hpp" @@ -77,7 +78,8 @@ private: NodeImpl* _node; PortImpl* _port; - Raul::List _disconnect_events; + typedef std::list Impls; + Impls _impls; CompiledPatch* _compiled_patch; ///< New process order for Patch -- cgit v1.2.1