Replace signals with Q_SIGNALS

This commit is contained in:
Jonas Kvinge
2024-08-11 23:23:12 +02:00
parent 9666feca37
commit 358da72ffe
136 changed files with 141 additions and 141 deletions

View File

@@ -46,7 +46,7 @@ class RadioBackend : public QObject {
void GetChannels();
void DeleteChannels();
signals:
Q_SIGNALS:
void NewChannels(const RadioChannelList &channels);
void ExitFinished();

View File

@@ -53,7 +53,7 @@ class RadioService : public QObject {
virtual QUrl Homepage() = 0;
virtual QUrl Donate() = 0;
signals:
Q_SIGNALS:
void NewChannels(const RadioChannelList &channels = RadioChannelList());
public slots:

View File

@@ -42,7 +42,7 @@ class RadioView : public AutoExpandingTreeView {
void showEvent(QShowEvent *e) override;
void contextMenuEvent(QContextMenuEvent *e) override;
signals:
Q_SIGNALS:
void GetChannels();
private slots:

View File

@@ -37,7 +37,7 @@ class RadioViewContainer : public QWidget {
RadioView *view() const { return ui_->view; }
signals:
Q_SIGNALS:
void Refresh();
private: