SVN_SILENT: more random minor edits

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=796307
This commit is contained in:
Aaron J. Seigo 2008-04-13 08:24:59 +00:00
parent f5b6d38cac
commit a76cce7919

View File

@ -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);