mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-06-12 05:07:46 +02:00
replace std::string by QString in emitFail()
This commit is contained in:
@ -62,8 +62,8 @@ void McResolver::pingWithDomainA(QString domain, int port) {
|
||||
});
|
||||
}
|
||||
|
||||
void McResolver::emitFail(std::string error) {
|
||||
qDebug() << "Ping error:" << QString::fromStdString(error);
|
||||
void McResolver::emitFail(QString error) {
|
||||
qDebug() << "Ping error:" << error;
|
||||
emit failed();
|
||||
emit finished();
|
||||
}
|
||||
|
Reference in New Issue
Block a user