Replace slots with Q_SLOTS

This commit is contained in:
Jonas Kvinge
2024-08-12 01:06:15 +02:00
parent f624b7a331
commit cbce9892d5
209 changed files with 277 additions and 277 deletions

View File

@@ -73,7 +73,7 @@ class Equalizer : public QDialog {
protected:
void closeEvent(QCloseEvent*) override;
private slots:
private Q_SLOTS:
void StereoBalancerEnabledChangedSlot(const bool enabled);
void StereoBalanceSliderChanged(const int value);
void EqualizerEnabledChangedSlot(const bool enabled);

View File

@@ -43,7 +43,7 @@ class EqualizerSlider : public QWidget {
Q_SIGNALS:
void ValueChanged(const int value);
public slots:
public Q_SLOTS:
void OnValueChanged(const int value);
private: