From 5f71c5eecee673b0a1156d0fe56726750d17cb86 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 3 Jun 2009 01:25:01 +0000 Subject: Rename event classes to match new pretty file names. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2069 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/events/Delete.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/engine/events/Delete.cpp') diff --git a/src/engine/events/Delete.cpp b/src/engine/events/Delete.cpp index 259fbcc6..d8a8bef9 100644 --- a/src/engine/events/Delete.cpp +++ b/src/engine/events/Delete.cpp @@ -39,7 +39,7 @@ namespace Events { using namespace Shared; -DeleteEvent::DeleteEvent(Engine& engine, SharedPtr responder, FrameTime time, QueuedEventSource* source, const Raul::Path& path) +Delete::Delete(Engine& engine, SharedPtr responder, FrameTime time, QueuedEventSource* source, const Raul::Path& path) : QueuedEvent(engine, responder, time, true, source) , _path(path) , _store_iterator(engine.engine_store()->end()) @@ -54,14 +54,14 @@ DeleteEvent::DeleteEvent(Engine& engine, SharedPtr responder, FrameTi } -DeleteEvent::~DeleteEvent() +Delete::~Delete() { delete _disconnect_event; } void -DeleteEvent::pre_process() +Delete::pre_process() { _store_iterator = _engine.engine_store()->find(_path); @@ -82,7 +82,7 @@ DeleteEvent::pre_process() if (_patch_node_listnode) { assert(_patch_node_listnode->elem() == _node.get()); - _disconnect_event = new DisconnectAllEvent(_engine, _node->parent_patch(), _node.get()); + _disconnect_event = new DisconnectAll(_engine, _node->parent_patch(), _node.get()); _disconnect_event->pre_process(); if (_node->parent_patch()->enabled()) { @@ -103,7 +103,7 @@ DeleteEvent::pre_process() if (_patch_port_listnode) { assert(_patch_port_listnode->elem() == _port.get()); - _disconnect_event = new DisconnectAllEvent(_engine, _port->parent_patch(), _port.get()); + _disconnect_event = new DisconnectAll(_engine, _port->parent_patch(), _port.get()); _disconnect_event->pre_process(); if (_port->parent_patch()->enabled()) { @@ -121,7 +121,7 @@ DeleteEvent::pre_process() void -DeleteEvent::execute(ProcessContext& context) +Delete::execute(ProcessContext& context) { QueuedEvent::execute(context); @@ -170,7 +170,7 @@ DeleteEvent::execute(ProcessContext& context) void -DeleteEvent::post_process() +Delete::post_process() { if (!_node && !_port) { if (_path.is_root()) { -- cgit v1.2.1