From b3b8ac7ee3d9acfd6d1968ed7ce6b6664d63abcf Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Thu, 4 Sep 2008 20:13:23 +0000 Subject: [PATCH] ignore the event if we don't care svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=857154 --- containment.cpp | 1 + service.cpp | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/containment.cpp b/containment.cpp index 442acbf28..402a9607e 100644 --- a/containment.cpp +++ b/containment.cpp @@ -1022,6 +1022,7 @@ void Containment::wheelEvent(QGraphicsSceneWheelEvent *event) } } + event->ignore(); Applet::wheelEvent(event); } diff --git a/service.cpp b/service.cpp index eacd73774..f0af0624a 100644 --- a/service.cpp +++ b/service.cpp @@ -141,12 +141,11 @@ ServiceJob* Service::startOperationCall(const KConfigGroup &description) if (d->disabledOperations.contains(op)) { kDebug() << "Operation" << op << "is disabled"; } else { - d->config->writeConfig(); QMap params; foreach (const QString &key, description.keyList()) { KConfigSkeletonItem *item = d->config->findItem(op, key); if (item) { - params.insert(key, item->property()); + params.insert(key, description.readEntry(key, item->property())); } }