summaryrefslogtreecommitdiff
path: root/libs/evoral/evoral/ControlList.hpp
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-04-20 01:24:25 +0000
committerCarl Hetherington <carl@carlh.net>2011-04-20 01:24:25 +0000
commitd22cd939a371b24e5e452963c98682a62ed8b6cf (patch)
tree936a0daa635f9870c23201243926aa2714568154 /libs/evoral/evoral/ControlList.hpp
parentee697bef967d457cb65e2161c2a71cbeac4d16ba (diff)
Remove unused NascentInfo::is_touch member.
git-svn-id: svn://localhost/ardour2/branches/3.0@9386 d708f5d6-7413-0410-9779-e7cbd77b26cf
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)
{}
};