summaryrefslogtreecommitdiffstats
path: root/src/engine/EventSink.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/EventSink.cpp')
-rw-r--r--src/engine/EventSink.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/engine/EventSink.cpp b/src/engine/EventSink.cpp
index 6c775d4c..5e7305e4 100644
--- a/src/engine/EventSink.cpp
+++ b/src/engine/EventSink.cpp
@@ -16,7 +16,6 @@
*/
#include <iostream>
-#include "events/SendPortValueEvent.hpp"
#include "EventSink.hpp"
#include "PortImpl.hpp"
@@ -24,15 +23,6 @@ using namespace std;
namespace Ingen {
-#if 0
-void
-EventSink::control_change(Port* port, FrameTime time, float val)
-{
- //cerr << "CONTROL CHANGE: " << port->path() << " == " << val << endl;
- SendPortValueEvent ev(_engine, time, port, false, 0, val);
- _events.write(sizeof(ev), (uchar*)&ev);
-}
-#endif
/** \a size is not size_t because an event will never be even remotely close
* to UINT32_MAX in size, so uint32_t saves wasted space on 64-bit.