From 1b1f669ac5e1eb1b553d0e1545485bd72b913bca Mon Sep 17 00:00:00 2001 From: Zachary Hall Date: Wed, 18 Dec 2024 09:18:00 -0800 Subject: [PATCH] Fix missing function prototype --- backends/ui/qt/slider.cpp | 2 +- backends/ui/qt/slider.hpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/backends/ui/qt/slider.cpp b/backends/ui/qt/slider.cpp index 4c7257c..f23a1a4 100644 --- a/backends/ui/qt/slider.cpp +++ b/backends/ui/qt/slider.cpp @@ -280,4 +280,4 @@ void LooperSlider::changeEvent(QEvent *event) { this->slider->setEnabled(isEnabled()); this->text->setEnabled(isEnabled()); } -} \ No newline at end of file +} diff --git a/backends/ui/qt/slider.hpp b/backends/ui/qt/slider.hpp index 9eb870f..c1168fd 100644 --- a/backends/ui/qt/slider.hpp +++ b/backends/ui/qt/slider.hpp @@ -78,6 +78,7 @@ class LooperSlider : public QWidget { const char *MaxLabel(); void SetLimitLabels(const char *min, const char *max); void SetValue(double value); + void SetValueNoSignal(double value); double Value(); void SetLogarithmic(bool logarithmic); bool IsLogarithmic();