diff --git a/src/handlers/xdgurl.cpp b/src/handlers/xdgurl.cpp index b73698d2804fe8f64c335c664d49500ad3cf4621..8b96d29c6288747809d0cc4a48f4a193f8438703 100644 --- a/src/handlers/xdgurl.cpp +++ b/src/handlers/xdgurl.cpp @@ -194,7 +194,7 @@ void XdgUrl::_installDownloadedFile(QNetworkReply *reply) result["message"] = QString("The KWin window switcher has been installed"); } else if (type == "appimages" - && Utility::Package::installAppimage(temporaryFile.fileName(), path)) { + && Utility::Package::installProgram(temporaryFile.fileName(), path)) { result["message"] = QString("The Appimage has been installed into " + destination); } else if (Utility::Package::uncompressArchive(temporaryFile.fileName(), destination)) { diff --git a/src/utility/package.cpp b/src/utility/package.cpp index 933acae89e74e40f40052c1ac61c9c6ad59cd551..698ca55580c7368afc1429a02fd9851bce62c1c2 100644 --- a/src/utility/package.cpp +++ b/src/utility/package.cpp @@ -101,7 +101,7 @@ bool Package::uninstallPlasmapkg(const QString &path, const QString &type) return false; } -bool Package::installAppimage(const QString &path, const QString &targetPath) +bool Package::installProgram(const QString &path, const QString &targetPath) { QProcess process; QString program = "install"; diff --git a/src/utility/package.h b/src/utility/package.h index 14797305b5a1bc9246428dee73f2ff151fffbd1b..a3a0ae180c43219ce4b7aa8eaf75c50f29f9e25f 100644 --- a/src/utility/package.h +++ b/src/utility/package.h @@ -15,7 +15,7 @@ public: static bool uncompressArchive(const QString &path, const QString &targetDir); static bool installPlasmapkg(const QString &path, const QString &type = "plasmoid"); static bool uninstallPlasmapkg(const QString &path, const QString &type = "plasmoid"); - static bool installAppimage(const QString &path, const QString &targetPath); + static bool installProgram(const QString &path, const QString &targetPath); }; } // namespace Utility