From f134a5c6bd2eb4674eb651e0755677a4d658765c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Sat, 12 Mar 2011 18:54:18 +0100 Subject: [PATCH] DashboardEffect does not have a propertyNotify method So there is no need to call the virtual method of the parent class which does nothing. --- effects/dashboard/dashboard.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/effects/dashboard/dashboard.cpp b/effects/dashboard/dashboard.cpp index 0784ca1607..d04fdead5f 100644 --- a/effects/dashboard/dashboard.cpp +++ b/effects/dashboard/dashboard.cpp @@ -176,8 +176,6 @@ void DashboardEffect::slotWindowActivated(EffectWindow *w) void DashboardEffect::slotWindowAdded(EffectWindow* w) { - propertyNotify(w, atom); - if (isDashboard(w)) { // Tell other windowAdded() effects to ignore this window w->setData(WindowAddedGrabRole, QVariant::fromValue(static_cast(this))); @@ -192,8 +190,6 @@ void DashboardEffect::slotWindowAdded(EffectWindow* w) void DashboardEffect::slotWindowClosed(EffectWindow* w) { - propertyNotify(w, atom); - if (isDashboard(w)) { // Tell other windowClosed() effects to ignore this window w->setData(WindowClosedGrabRole, QVariant::fromValue(static_cast(this)));