summaryrefslogtreecommitdiff
path: root/libs/evoral/evoral/ControlList.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/evoral/evoral/ControlList.hpp')
-rw-r--r--libs/evoral/evoral/ControlList.hpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/libs/evoral/evoral/ControlList.hpp b/libs/evoral/evoral/ControlList.hpp
index 65961d8fb1..87f214a601 100644
--- a/libs/evoral/evoral/ControlList.hpp
+++ b/libs/evoral/evoral/ControlList.hpp
@@ -280,13 +280,11 @@ protected:
struct NascentInfo {
EventList events;
- bool is_touch;
double start_time;
double end_time;
- NascentInfo (bool touching, double start = -1.0)
- : is_touch (touching)
- , start_time (start)
+ NascentInfo (double start = -1.0)
+ : start_time (start)
, end_time (-1.0)
{}
};