summaryrefslogtreecommitdiffstats
path: root/src/engine/bpmcontrol.h
diff options
context:
space:
mode:
authorBe <be@mixxx.org>2019-01-05 16:06:29 -0600
committerBe <be@mixxx.org>2019-01-06 00:24:59 -0600
commit2ab7121f08fe12b628848720bb432af43aca0175 (patch)
treeafc0d8c9a6cdfd5a352241229a94e38fe82cbe50 /src/engine/bpmcontrol.h
parentf161b34ae71be5c24496c193bcbd8d296c60997e (diff)
remove need for lambdas with connectValueChange(Request)
and remove old SLOT syntax for ControlProxy::connectValueChangeRequest. That was easier than getting it to play nice with the templating required for the new functor syntax.
Diffstat (limited to 'src/engine/bpmcontrol.h')
-rw-r--r--src/engine/bpmcontrol.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/bpmcontrol.h b/src/engine/bpmcontrol.h
index 5d53225aed..a715179ee0 100644
--- a/src/engine/bpmcontrol.h
+++ b/src/engine/bpmcontrol.h
@@ -83,8 +83,8 @@ class BpmControl : public EngineControl {
void slotControlBeatSyncTempo(double);
void slotTapFilter(double,int);
void slotBpmTap(double);
- void slotUpdateRateSlider();
- void slotUpdateEngineBpm();
+ void slotUpdateRateSlider(double v = 0.0);
+ void slotUpdateEngineBpm(double v = 0.0);
void slotUpdatedTrackBeats();
void slotBeatsTranslate(double);
void slotBeatsTranslateMatchAlignment(double);