SVN commit 1012820 by mlaurent: const'ify M +1 -1 launch.cpp --- trunk/KDE/kdebase/workspace/plasma/containmentactions/applauncher/launch.cpp #1012819:1012820 @@ -64,7 +64,7 @@ //add the whole kmenu Plasma::DataEngine::Data app = dataEngine("apps")->query("/"); - QStringList sources = app.value("entries").toStringList(); + const QStringList sources = app.value("entries").toStringList(); foreach (const QString &source, sources) { addApp(&desktopMenu, source); }