Connection syntax migration (#637)

This commit is contained in:
Jonas Kvinge
2021-01-26 16:48:04 +01:00
committed by GitHub
parent d57f6303f4
commit bf7c8df353
362 changed files with 2452 additions and 2434 deletions

View File

@@ -31,20 +31,20 @@ class MoodbarController : public QObject {
Q_OBJECT
public:
explicit MoodbarController(Application* app, QObject* parent = nullptr);
explicit MoodbarController(Application *app, QObject *parent = nullptr);
void ReloadSettings();
signals:
void CurrentMoodbarDataChanged(const QByteArray& data);
void CurrentMoodbarDataChanged(QByteArray data);
private slots:
void CurrentSongChanged(const Song& song);
void CurrentSongChanged(const Song &song);
void PlaybackStopped();
void AsyncLoadComplete(MoodbarPipeline* pipeline, const QUrl& url);
void AsyncLoadComplete(MoodbarPipeline *pipeline, const QUrl &url);
private:
Application* app_;
Application *app_;
bool enabled_;
};