修改qurl为qstring

This commit is contained in:
hewenfei 2022-06-28 17:36:31 +08:00
parent 72aae0bf98
commit d3c509aa2f
1 changed files with 1 additions and 1 deletions

View File

@ -841,7 +841,7 @@ int FileUtils::openFile(QString &path, bool openInDir)
isSuccess = false;
} else {
appLaunchInterface->setTimeout(10000);
QDBusReply<bool> reply = appLaunchInterface->call("LaunchDefaultAppWithUrl", QUrl::fromLocalFile(path));
QDBusReply<bool> reply = appLaunchInterface->call("LaunchDefaultAppWithUrl", QUrl::fromLocalFile(path).toString());
if(reply.isValid()) {
isSuccess = reply;
} else {