Pass parent to queue

This commit is contained in:
Jonas Kvinge 2021-06-21 15:33:46 +02:00
parent 7619e8427a
commit 1abbd5ecbc
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ Playlist::Playlist(PlaylistBackend *backend, TaskManager *task_manager, Collecti
: QAbstractListModel(parent),
is_loading_(false),
proxy_(new PlaylistFilter(this)),
queue_(new Queue(this)),
queue_(new Queue(this, this)),
timer_save_(new QTimer(this)),
backend_(backend),
task_manager_(task_manager),