Add const/references to all signal parameters
This commit is contained in:
@@ -47,11 +47,11 @@ class FileViewList : public QListView {
|
||||
|
||||
signals:
|
||||
void AddToPlaylist(QMimeData *data);
|
||||
void CopyToCollection(QList<QUrl> urls);
|
||||
void MoveToCollection(QList<QUrl> urls);
|
||||
void CopyToDevice(QList<QUrl> urls);
|
||||
void Delete(QStringList filenames);
|
||||
void EditTags(QList<QUrl> urls);
|
||||
void CopyToCollection(const QList<QUrl> &urls);
|
||||
void MoveToCollection(const QList<QUrl> &urls);
|
||||
void CopyToDevice(const QList<QUrl> &urls);
|
||||
void Delete(const QStringList &filenames);
|
||||
void EditTags(const QList<QUrl> &urls);
|
||||
void Back();
|
||||
void Forward();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user