Fix missing function prototype
Some checks failed
Build / build-gentoo (push) Failing after 1m10s
Build / download-system-deps (push) Successful in 3m59s
Build / get-source-code (push) Successful in 9m45s
Build / build-deb (push) Failing after 4m54s
Build / build-appimage (push) Successful in 3m58s
Build / build-windows (push) Has been cancelled
Build / build-android (push) Has been cancelled
Some checks failed
Build / build-gentoo (push) Failing after 1m10s
Build / download-system-deps (push) Successful in 3m59s
Build / get-source-code (push) Successful in 9m45s
Build / build-deb (push) Failing after 4m54s
Build / build-appimage (push) Successful in 3m58s
Build / build-windows (push) Has been cancelled
Build / build-android (push) Has been cancelled
This commit is contained in:
parent
942987bbcb
commit
1b1f669ac5
2 changed files with 2 additions and 1 deletions
|
@ -280,4 +280,4 @@ void LooperSlider::changeEvent(QEvent *event) {
|
||||||
this->slider->setEnabled(isEnabled());
|
this->slider->setEnabled(isEnabled());
|
||||||
this->text->setEnabled(isEnabled());
|
this->text->setEnabled(isEnabled());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -78,6 +78,7 @@ class LooperSlider : public QWidget {
|
||||||
const char *MaxLabel();
|
const char *MaxLabel();
|
||||||
void SetLimitLabels(const char *min, const char *max);
|
void SetLimitLabels(const char *min, const char *max);
|
||||||
void SetValue(double value);
|
void SetValue(double value);
|
||||||
|
void SetValueNoSignal(double value);
|
||||||
double Value();
|
double Value();
|
||||||
void SetLogarithmic(bool logarithmic);
|
void SetLogarithmic(bool logarithmic);
|
||||||
bool IsLogarithmic();
|
bool IsLogarithmic();
|
||||||
|
|
Loading…
Reference in a new issue