mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 01:04:06 +02:00
fix incorrectly named slot in Sound
This commit is contained in:
parent
3b8cf8c172
commit
aa5d7aa0b1
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ Sound::Sound(const QUrl& sampleURL, QObject* parent) :
|
|||
|
||||
QNetworkReply* soundDownload = manager->get(QNetworkRequest(sampleURL));
|
||||
connect(soundDownload, &QNetworkReply::finished, this, &Sound::replyFinished);
|
||||
connect(soundDownload, SIGNAL(error(QNetworkReply::NetworkError)), this, SLOT(error(QNetworkReply::NetworkError)));
|
||||
connect(soundDownload, SIGNAL(error(QNetworkReply::NetworkError)), this, SLOT(replyError(QNetworkReply::NetworkError)));
|
||||
}
|
||||
|
||||
void Sound::replyFinished() {
|
||||
|
|
Loading…
Reference in a new issue