Renamed getResults to resultsReady

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97
2023-06-23 14:38:23 +03:00
parent b2ed2bf810
commit 67db141203
5 changed files with 6 additions and 6 deletions

View File

@ -71,7 +71,7 @@ void ModrinthHasher::executeTask()
emitFailed("Empty hash!");
} else {
emitSucceeded();
emit getResults(m_hash);
emit resultsReady(m_hash);
}
}

View File

@ -23,7 +23,7 @@ class Hasher : public Task {
QString getPath() const { return m_path; };
signals:
void getResults(QString hash);
void resultsReady(QString hash);
protected:
QString m_hash;