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/SendPortValue.hpp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'src/engine/events/SendPortValue.hpp') diff --git a/src/engine/events/SendPortValue.hpp b/src/engine/events/SendPortValue.hpp index 051070b7..d3ac61f7 100644 --- a/src/engine/events/SendPortValue.hpp +++ b/src/engine/events/SendPortValue.hpp @@ -39,15 +39,16 @@ namespace Events { * * \ingroup engine */ -class SendPortValueEvent : public Event +class SendPortValue : public Event { public: - inline SendPortValueEvent(Engine& engine, - SampleCount timestamp, - PortImpl* port, - bool omni, - uint32_t voice_num, - Sample value) + inline SendPortValue( + Engine& engine, + SampleCount timestamp, + PortImpl* port, + bool omni, + uint32_t voice_num, + Sample value) : Event(engine, SharedPtr(), timestamp) , _port(port) , _omni(omni) @@ -56,7 +57,7 @@ public: { } - inline void operator=(const SendPortValueEvent& ev) { + inline void operator=(const SendPortValue& ev) { _port = ev._port; _omni = ev._omni; _voice_num = ev._voice_num; -- cgit v1.2.1