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.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/engine/QueuedEvent.hpp b/src/engine/QueuedEvent.hpp
index e616d269..35eb1c82 100644
--- a/src/engine/QueuedEvent.hpp
+++ b/src/engine/QueuedEvent.hpp
@@ -1,15 +1,15 @@
/* This file is part of Ingen.
* Copyright (C) 2007 Dave Robillard <http://drobilla.net>
- *
+ *
* Ingen is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
- *
+ *
* Ingen is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
- *
+ *
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
@@ -52,11 +52,11 @@ public:
bool is_blocking() { return _blocking; }
bool is_prepared() { return _pre_processed; }
-
+
protected:
QueuedEvent(Engine& engine,
SharedPtr<Responder> responder,
- FrameTime time,
+ FrameTime time,
bool blocking = false,
QueuedEventSource* source = NULL)
: Event(engine, responder, time)
@@ -65,7 +65,7 @@ protected:
if (blocking)
assert(_source);
}
-
+
// NULL event base (for internal events only!)
QueuedEvent(Engine& engine)
: Event(engine, SharedPtr<Responder>(), 0)