summaryrefslogtreecommitdiff
path: root/libs/surfaces/push2
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-07-24 01:22:50 +0200
committerRobin Gareus <robin@gareus.org>2017-07-24 01:59:18 +0200
commitfde0e293a30ed4e689208b456a4431b7bb278eb4 (patch)
tree93686a5c6e7df13ea7acd577c8de402ee4a6947f /libs/surfaces/push2
parentf04bacdfac885e927809ee0d3a323defda42033b (diff)
Remove unused "mark" parameter from stop_touch() API
Diffstat (limited to 'libs/surfaces/push2')
-rw-r--r--libs/surfaces/push2/mix.cc2
-rw-r--r--libs/surfaces/push2/push2.cc2
-rw-r--r--libs/surfaces/push2/track_mix.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/libs/surfaces/push2/mix.cc b/libs/surfaces/push2/mix.cc
index fb2bfd222f..f012e91673 100644
--- a/libs/surfaces/push2/mix.cc
+++ b/libs/surfaces/push2/mix.cc
@@ -437,7 +437,7 @@ MixLayout::strip_vpot_touch (int n, bool touching)
if (touching) {
ac->start_touch (session.audible_frame());
} else {
- ac->stop_touch (true, session.audible_frame());
+ ac->stop_touch (session.audible_frame());
}
}
}
diff --git a/libs/surfaces/push2/push2.cc b/libs/surfaces/push2/push2.cc
index 7b9a348841..f29ff41d06 100644
--- a/libs/surfaces/push2/push2.cc
+++ b/libs/surfaces/push2/push2.cc
@@ -1082,7 +1082,7 @@ Push2::other_vpot_touch (int n, bool touching)
if (touching) {
ac->start_touch (session->audible_frame());
} else {
- ac->stop_touch (true, session->audible_frame());
+ ac->stop_touch (session->audible_frame());
}
}
}
diff --git a/libs/surfaces/push2/track_mix.cc b/libs/surfaces/push2/track_mix.cc
index ed4c9c3aa3..a12ca84cf0 100644
--- a/libs/surfaces/push2/track_mix.cc
+++ b/libs/surfaces/push2/track_mix.cc
@@ -572,7 +572,7 @@ TrackMixLayout::strip_vpot_touch (int n, bool touching)
if (touching) {
ac->start_touch (session.audible_frame());
} else {
- ac->stop_touch (true, session.audible_frame());
+ ac->stop_touch (session.audible_frame());
}
}
}