summaryrefslogtreecommitdiffstats
path: root/src/engine/events/DisconnectAll.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-20 03:37:59 +0000
committerDavid Robillard <d@drobilla.net>2011-04-20 03:37:59 +0000
commit9ce6db73368703afbd548ed20b886efcc2c27350 (patch)
tree0d2fdbe0429f8e021d929fe3001281812107fd89 /src/engine/events/DisconnectAll.hpp
parent1119a2c71a5f6b4e23ac0a19784705002ca9cefd (diff)
downloadingen-9ce6db73368703afbd548ed20b886efcc2c27350.tar.gz
ingen-9ce6db73368703afbd548ed20b886efcc2c27350.tar.bz2
ingen-9ce6db73368703afbd548ed20b886efcc2c27350.zip
Use std::list for DisconnectAll::_impls.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3180 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/events/DisconnectAll.hpp')
-rw-r--r--src/engine/events/DisconnectAll.hpp6
1 files changed, 4 insertions, 2 deletions
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 <list>
+
#include "raul/Path.hpp"
#include "Disconnect.hpp"
@@ -77,7 +78,8 @@ private:
NodeImpl* _node;
PortImpl* _port;
- Raul::List<Disconnect::Impl*> _disconnect_events;
+ typedef std::list<Disconnect::Impl*> Impls;
+ Impls _impls;
CompiledPatch* _compiled_patch; ///< New process order for Patch