Add const/references to all signal parameters
This commit is contained in:
@@ -57,10 +57,10 @@ class CddaSongLoader : public QObject {
|
||||
QUrl GetUrlFromTrack(const int track_number) const;
|
||||
|
||||
signals:
|
||||
void SongsLoadError(QString error);
|
||||
void SongsLoaded(SongList songs);
|
||||
void SongsDurationLoaded(SongList songs, QString error = QString());
|
||||
void SongsMetadataLoaded(SongList songs);
|
||||
void SongsLoadError(const QString &error);
|
||||
void SongsLoaded(const SongList &songs);
|
||||
void SongsDurationLoaded(const SongList &songs, const QString &error = QString());
|
||||
void SongsMetadataLoaded(const SongList &songs);
|
||||
|
||||
private slots:
|
||||
#ifdef HAVE_MUSICBRAINZ
|
||||
|
||||
Reference in New Issue
Block a user