From a76cce7919a48e7a0abe18feebb4f9209475a518 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Sun, 13 Apr 2008 08:24:59 +0000 Subject: [PATCH] SVN_SILENT: more random minor edits svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=796307 --- corona.cpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/corona.cpp b/corona.cpp index 136c99a9b..024ed42d9 100644 --- a/corona.cpp +++ b/corona.cpp @@ -362,14 +362,11 @@ Containment* Corona::addContainment(const QString& name, const QVariantList& arg } d->containments.append(containment); - connect(containment, SIGNAL(destroyed(QObject*)), - this, SLOT(containmentDestroyed(QObject*))); - connect(containment, SIGNAL(launchActivated()), - SIGNAL(launchActivated())); - connect(containment, SIGNAL(configNeedsSaving()), - SLOT(scheduleConfigSync())); + connect(containment, SIGNAL(destroyed(QObject*)), SLOT(containmentDestroyed(QObject*))); + connect(containment, SIGNAL(launchActivated()), SIGNAL(launchActivated())); + connect(containment, SIGNAL(configNeedsSaving()), SLOT(scheduleConfigSync())); connect(containment, SIGNAL(screenChanged(int,int,Plasma::Containment*)), - this, SIGNAL(screenOwnerChanged(int,int,Plasma::Containment*))); + SIGNAL(screenOwnerChanged(int,int,Plasma::Containment*))); if (!delayedInit) { emit containmentAdded(containment);