SongLoader: Use QObject::connect

This commit is contained in:
Jonas Kvinge 2024-06-03 00:00:20 +02:00
parent 402d13a322
commit 0a93affeef
1 changed files with 1 additions and 1 deletions

View File

@ -520,7 +520,7 @@ SongLoader::Result SongLoader::LoadRemote() {
}
QEventLoop loop;
loop.connect(this, &SongLoader::LoadRemoteFinished, &loop, &QEventLoop::quit);
QObject::connect(this, &SongLoader::LoadRemoteFinished, &loop, &QEventLoop::quit);
// Start "playing"
pipeline_ = pipeline;