Ref T485 Adjust CLogMessage and CStatusMessage call sites to use the new API.

This commit is contained in:
Mat Sutcliffe
2018-12-23 20:12:49 +00:00
parent cba820cbce
commit 225ff81252
118 changed files with 724 additions and 721 deletions

View File

@@ -64,7 +64,7 @@ namespace BlackMisc
const bool c = this->connection().connect(this->service(), this->path(), this->interface(), method.name(), this->parent(), signature);
if (!c)
{
CLogMessage(this).error("Cannot connect signal: %1") << QString(signature);
CLogMessage(this).error(u"Cannot connect signal: %1") << QString(signature);
}
}
}
@@ -86,7 +86,7 @@ namespace BlackMisc
pr.waitForFinished();
if(pr.isError())
{
CLogMessage(this).debug("CGenericDBusInterface::callDBusRet(%1) returned: %2") << method << pr.error().message();
CLogMessage(this).debug(u"CGenericDBusInterface::callDBusRet(%1) returned: %2") << method << pr.error().message();
}
return pr;
}