CollectionModelUpdate: Remove reference from enum
This commit is contained in:
@@ -19,5 +19,5 @@
|
|||||||
|
|
||||||
#include "collectionmodelupdate.h"
|
#include "collectionmodelupdate.h"
|
||||||
|
|
||||||
CollectionModelUpdate::CollectionModelUpdate(const Type &_type, const SongList &_songs)
|
CollectionModelUpdate::CollectionModelUpdate(const Type _type, const SongList &_songs)
|
||||||
: type(_type), songs(_songs) {}
|
: type(_type), songs(_songs) {}
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ class CollectionModelUpdate {
|
|||||||
Update,
|
Update,
|
||||||
Remove,
|
Remove,
|
||||||
};
|
};
|
||||||
explicit CollectionModelUpdate(const Type &_type, const SongList &_songs);
|
explicit CollectionModelUpdate(const Type _type, const SongList &_songs);
|
||||||
Type type;
|
Type type;
|
||||||
SongList songs;
|
SongList songs;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user