From 1cb7e7e771b63af350c3420b4d0fe997064bbd72 Mon Sep 17 00:00:00 2001 From: Alex Merry Date: Mon, 28 Jul 2008 20:59:03 +0000 Subject: [PATCH] Actually load the operations scheme when we have the information necessary to do so. CCMAIL: plasma-devel@kde.org Can someone backport this for 4.1.1, please? svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=838833 --- service.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/service.cpp b/service.cpp index 3de4932eb..107d5871b 100644 --- a/service.cpp +++ b/service.cpp @@ -150,6 +150,9 @@ QString Service::name() const void Service::setName(const QString &name) { d->name = name; + if (!d->config) { + registerOperationsScheme(); + } } void Service::setOperationsScheme(QIODevice *xml)