From 20843eac67485d020d153ebfc3b05d6ae2688fbd Mon Sep 17 00:00:00 2001 From: Akira Ohgaki <akiraohgaki@gmail.com> Date: Mon, 17 Oct 2016 03:18:03 +0900 Subject: [PATCH] Rename installAppimage() to installProgram() --- src/handlers/xdgurl.cpp | 2 +- src/utility/package.cpp | 2 +- src/utility/package.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/handlers/xdgurl.cpp b/src/handlers/xdgurl.cpp index b73698d..8b96d29 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 933acae..698ca55 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 1479730..a3a0ae1 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 -- GitLab