summaryrefslogtreecommitdiffstats
path: root/src/engine/controls/cuecontrol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/controls/cuecontrol.cpp')
-rw-r--r--src/engine/controls/cuecontrol.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/engine/controls/cuecontrol.cpp b/src/engine/controls/cuecontrol.cpp
index 184bf9d03e..8205ab61e0 100644
--- a/src/engine/controls/cuecontrol.cpp
+++ b/src/engine/controls/cuecontrol.cpp
@@ -1813,41 +1813,41 @@ HotcueControl::~HotcueControl() {
}
void HotcueControl::slotHotcueSet(double v) {
- emit(hotcueSet(this, v));
+ emit hotcueSet(this, v);
}
void HotcueControl::slotHotcueGoto(double v) {
- emit(hotcueGoto(this, v));
+ emit hotcueGoto(this, v);
}
void HotcueControl::slotHotcueGotoAndPlay(double v) {
- emit(hotcueGotoAndPlay(this, v));
+ emit hotcueGotoAndPlay(this, v);
}
void HotcueControl::slotHotcueGotoAndStop(double v) {
- emit(hotcueGotoAndStop(this, v));
+ emit hotcueGotoAndStop(this, v);
}
void HotcueControl::slotHotcueActivate(double v) {
- emit(hotcueActivate(this, v));
+ emit hotcueActivate(this, v);
}
void HotcueControl::slotHotcueActivatePreview(double v) {
- emit(hotcueActivatePreview(this, v));
+ emit hotcueActivatePreview(this, v);
}
void HotcueControl::slotHotcueClear(double v) {
- emit(hotcueClear(this, v));
+ emit hotcueClear(this, v);
}
void HotcueControl::slotHotcuePositionChanged(double newPosition) {
m_hotcueEnabled->forceSet(newPosition == Cue::kNoPosition ? 0.0 : 1.0);
- emit(hotcuePositionChanged(this, newPosition));
+ emit hotcuePositionChanged(this, newPosition);
}
void HotcueControl::slotHotcueColorChanged(double newColorId) {
m_pCue->setColor(Color::kPredefinedColorsSet.predefinedColorFromId(newColorId));
- emit(hotcueColorChanged(this, newColorId));
+ emit hotcueColorChanged(this, newColorId);
}
double HotcueControl::getPosition() const {