Do not delete effects pointer from KWin::Application dtor

Not needed as the Compositor already deletes the effects pointer.
This commit is contained in:
Martin Gräßlin 2013-08-15 13:08:49 +02:00
parent 3cb4e0322f
commit 87f362c953

View file

@ -298,7 +298,6 @@ Application::~Application()
if (owner.ownerWindow() != None) // If there was no --replace (no new WM) if (owner.ownerWindow() != None) // If there was no --replace (no new WM)
XSetInputFocus(display(), PointerRoot, RevertToPointerRoot, xTime()); XSetInputFocus(display(), PointerRoot, RevertToPointerRoot, xTime());
delete options; delete options;
delete effects;
delete atoms; delete atoms;
} }