Adapt to changes in KDEInstallDirs

kde5/services is kservices5
kde5/servicetypes is kservicestypes5
This commit is contained in:
Aleix Pol 2014-04-26 19:28:19 +02:00
parent 59b6373669
commit 1294051eaf

View File

@ -282,7 +282,7 @@ bool PackageJobThread::installPackage(const QString &src, const QString &dest)
const QString serviceName = d->servicePrefix + meta.pluginName() + ".desktop";
QString localServiceDirectory = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QLatin1String("/kde5/services/");
QString localServiceDirectory = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QLatin1String("/kservices5/");
if (!QDir().mkpath(localServiceDirectory)) {
qDebug() << "Failed to create ... " << localServiceDirectory;
d->errorMessage = i18n("Could not create local service directory: %1", localServiceDirectory);
@ -348,7 +348,7 @@ bool PackageJobThread::uninstallPackage(const QString &packagePath)
const QString serviceName = d->servicePrefix + packageName + ".desktop";
QString service = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QLatin1String("/kde5/services/") + serviceName;
QString service = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QLatin1String("/kservices5/") + serviceName;
bool ok = QFile::remove(service);
if (!ok) {