From 94928254ae385fb6e050c333045340099af23070 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Fri, 6 Aug 2010 03:42:26 +0000 Subject: [PATCH] constify svn path=/trunk/KDE/kdelibs/; revision=1159732 --- service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service.cpp b/service.cpp index a201ed39c..87f5b5747 100644 --- a/service.cpp +++ b/service.cpp @@ -386,7 +386,7 @@ void Service::registerOperationsScheme() return; } - QString path = KStandardDirs::locate("data", "plasma/services/" + d->name + ".operations"); + const QString path = KStandardDirs::locate("data", "plasma/services/" + d->name + ".operations"); if (path.isEmpty()) { kDebug() << "Cannot find operations description:" << d->name << ".operations";