Replace signals with Q_SIGNALS
This commit is contained in:
@@ -46,7 +46,7 @@ class RadioBackend : public QObject {
|
||||
void GetChannels();
|
||||
void DeleteChannels();
|
||||
|
||||
signals:
|
||||
Q_SIGNALS:
|
||||
void NewChannels(const RadioChannelList &channels);
|
||||
void ExitFinished();
|
||||
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -37,7 +37,7 @@ class RadioViewContainer : public QWidget {
|
||||
|
||||
RadioView *view() const { return ui_->view; }
|
||||
|
||||
signals:
|
||||
Q_SIGNALS:
|
||||
void Refresh();
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user