summaryrefslogtreecommitdiffstats
path: root/src/engine/QueuedEvent.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/QueuedEvent.hpp')
-rw-r--r--src/engine/QueuedEvent.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/QueuedEvent.hpp b/src/engine/QueuedEvent.hpp
index 64a82304..f19c7b95 100644
--- a/src/engine/QueuedEvent.hpp
+++ b/src/engine/QueuedEvent.hpp
@@ -22,7 +22,7 @@
namespace Ingen {
-class QueuedEventSource;
+class EventSource;
/** An Event with a not-time-critical preprocessing stage.
@@ -57,7 +57,7 @@ protected:
SharedPtr<Responder> responder,
FrameTime time,
bool blocking = false,
- QueuedEventSource* source = NULL)
+ EventSource* source = NULL)
: Event(engine, responder, time)
, _source(source)
, _pre_processed(false)
@@ -75,7 +75,7 @@ protected:
, _blocking(false)
{}
- QueuedEventSource* _source;
+ EventSource* _source;
bool _pre_processed;
bool _blocking;
};