diff options
-rw-r--r-- | src/libs/engine/events/EnablePortBroadcastingEvent.cpp (renamed from src/libs/engine/events/EnablePortMonitoringEvent.cpp) | 16 | ||||
-rw-r--r-- | src/libs/engine/events/EnablePortBroadcastingEvent.hpp (renamed from src/libs/engine/events/EnablePortMonitoringEvent.hpp) | 16 | ||||
-rw-r--r-- | src/libs/engine/events/Makefile.am | 4 |
3 files changed, 18 insertions, 18 deletions
diff --git a/src/libs/engine/events/EnablePortMonitoringEvent.cpp b/src/libs/engine/events/EnablePortBroadcastingEvent.cpp index bad80041..e432a884 100644 --- a/src/libs/engine/events/EnablePortMonitoringEvent.cpp +++ b/src/libs/engine/events/EnablePortBroadcastingEvent.cpp @@ -17,7 +17,7 @@ #include <string> #include "interface/ClientInterface.hpp" -#include "events/EnablePortMonitoringEvent.hpp" +#include "events/EnablePortBroadcastingEvent.hpp" #include "Responder.hpp" #include "Engine.hpp" #include "Port.hpp" @@ -30,10 +30,10 @@ using std::string; namespace Ingen { -EnablePortMonitoringEvent::EnablePortMonitoringEvent(Engine& engine, - SharedPtr<Responder> responder, - SampleCount timestamp, - const std::string& port_path) +EnablePortBroadcastingEvent::EnablePortBroadcastingEvent(Engine& engine, + SharedPtr<Responder> responder, + SampleCount timestamp, + const std::string& port_path) : QueuedEvent(engine, responder, timestamp), _port_path(port_path), _port(NULL) @@ -42,7 +42,7 @@ EnablePortMonitoringEvent::EnablePortMonitoringEvent(Engine& engine void -EnablePortMonitoringEvent::pre_process() +EnablePortBroadcastingEvent::pre_process() { _port = _engine.object_store()->find_port(_port_path); @@ -51,7 +51,7 @@ EnablePortMonitoringEvent::pre_process() void -EnablePortMonitoringEvent::execute(ProcessContext& context) +EnablePortBroadcastingEvent::execute(ProcessContext& context) { QueuedEvent::execute(context); @@ -67,7 +67,7 @@ EnablePortMonitoringEvent::execute(ProcessContext& context) void -EnablePortMonitoringEvent::post_process() +EnablePortBroadcastingEvent::post_process() { #if 0 string msg; diff --git a/src/libs/engine/events/EnablePortMonitoringEvent.hpp b/src/libs/engine/events/EnablePortBroadcastingEvent.hpp index 9696e5ca..55f7decb 100644 --- a/src/libs/engine/events/EnablePortMonitoringEvent.hpp +++ b/src/libs/engine/events/EnablePortBroadcastingEvent.hpp @@ -15,8 +15,8 @@ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef ENABLEPORTNOTIFICATIONEVENT_H -#define ENABLEPORTNOTIFICATIONEVENT_H +#ifndef ENABLEPORTBROADCASTINGEVENT_H +#define ENABLEPORTBROADCASTINGEVENT_H #include <string> #include "QueuedEvent.hpp" @@ -35,13 +35,13 @@ using Shared::ClientInterface; * * \ingroup engine */ -class EnablePortMonitoringEvent : public QueuedEvent +class EnablePortBroadcastingEvent : public QueuedEvent { public: - EnablePortMonitoringEvent(Engine& engine, - SharedPtr<Responder> responder, - SampleCount timestamp, - const std::string& port_path); + EnablePortBroadcastingEvent(Engine& engine, + SharedPtr<Responder> responder, + SampleCount timestamp, + const std::string& port_path); void pre_process(); void execute(ProcessContext& context); @@ -55,4 +55,4 @@ private: } // namespace Ingen -#endif // ENABLEPORTNOTIFICATIONEVENT_H +#endif // ENABLEPORTBROADCASTINGEVENT_H diff --git a/src/libs/engine/events/Makefile.am b/src/libs/engine/events/Makefile.am index d6b671a3..e634b63b 100644 --- a/src/libs/engine/events/Makefile.am +++ b/src/libs/engine/events/Makefile.am @@ -33,8 +33,8 @@ EXTRA_DIST = \ DisconnectionEvent.hpp \ EnablePatchEvent.cpp \ EnablePatchEvent.hpp \ - EnablePortMonitoringEvent.cpp \ - EnablePortMonitoringEvent.hpp \ + EnablePortBroadcastingEvent.cpp \ + EnablePortBroadcastingEvent.hpp \ LoadPluginsEvent.cpp \ LoadPluginsEvent.hpp \ MidiLearnEvent.cpp \ |