change downloaded to ready to avoid collision

This commit is contained in:
Stephen Birarda 2015-10-26 12:14:12 -07:00
parent 61ad91aba6
commit a4ddb7a1e4
2 changed files with 2 additions and 2 deletions

View file

@ -95,7 +95,7 @@ void Sound::downloadFinished(const QByteArray& data) {
}
_isReady = true;
emit downloaded();
emit ready();
}
void Sound::downSample(const QByteArray& rawAudioByteArray) {

View file

@ -31,7 +31,7 @@ public:
const QByteArray& getByteArray() { return _byteArray; }
signals:
void downloaded();
void ready();
private:
QByteArray _byteArray;