From 2851f5b8bb8d94eaf3c4306e2694442d26a993ec Mon Sep 17 00:00:00 2001 From: Swiftb0y <12380386+Swiftb0y@users.noreply.github.com> Date: Mon, 15 May 2023 14:55:18 +0200 Subject: [PATCH] refactor(cuecontrol): comment out debug prints --- src/engine/controls/cuecontrol.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/engine/controls/cuecontrol.cpp b/src/engine/controls/cuecontrol.cpp index 8005ec10980..5e6b6f7ca1d 100644 --- a/src/engine/controls/cuecontrol.cpp +++ b/src/engine/controls/cuecontrol.cpp @@ -2640,7 +2640,7 @@ void HotcueControl::slotHotcueColorChangeRequest(double color) { qWarning() << "slotHotcueColorChanged got invalid value:" << color; return; } - qDebug() << "HotcueControl::slotHotcueColorChangeRequest" << color; + // qDebug() << "HotcueControl::slotHotcueColorChangeRequest" << color; m_hotcueColor->setAndConfirm(color); } @@ -2671,7 +2671,7 @@ void HotcueControl::setCue(const CuePointer& pCue) { Cue::StartAndEndPositions pos = pCue->getStartAndEndPosition(); setPosition(pos.startPosition); setEndPosition(pos.endPosition); - qDebug() << "HotcueControl::setCue"; + // qDebug() << "HotcueControl::setCue"; setColor(pCue->getColor()); setStatus((pCue->getType() == mixxx::CueType::Invalid) ? HotcueControl::Status::Empty @@ -2686,7 +2686,7 @@ mixxx::RgbColor::optional_t HotcueControl::getColor() const { } void HotcueControl::setColor(mixxx::RgbColor::optional_t newColor) { - qDebug() << "HotcueControl::::setColor()" << newColor; + // qDebug() << "HotcueControl::setColor()" << newColor; if (newColor) { m_hotcueColor->set(*newColor); }