From kde-commits Tue Nov 13 00:29:10 2007 From: Jeremy Paul Whiting Date: Tue, 13 Nov 2007 00:29:10 +0000 To: kde-commits Subject: KDE/kdebase/workspace/libs/plasma Message-Id: <1194913750.314860.23542.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=119491375902041 SVN commit 735913 by whiting: don't crash when hovering over the panel plasmoids I'm fairly confident the assertion that used to be here is bogus because of panels not belonging to the desktop containment CCMAIL: aseigo@kde.org M +1 -1 containment.cpp --- trunk/KDE/kdebase/workspace/libs/plasma/containment.cpp #735912:735913 @@ -516,7 +516,7 @@ // Otherwise we're watching something we shouldn't be... Q_ASSERT(applet!=0); - Q_ASSERT(d->applets.contains(applet)); + if (!d->applets.contains(applet)) return false; switch (event->type()) {