From 87f362c953234d952dcebc0c4feb5ea6e073bc7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Thu, 15 Aug 2013 13:08:49 +0200 Subject: [PATCH] Do not delete effects pointer from KWin::Application dtor Not needed as the Compositor already deletes the effects pointer. --- main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/main.cpp b/main.cpp index 8095c97103..8c5b5e8e2e 100644 --- a/main.cpp +++ b/main.cpp @@ -298,7 +298,6 @@ Application::~Application() if (owner.ownerWindow() != None) // If there was no --replace (no new WM) XSetInputFocus(display(), PointerRoot, RevertToPointerRoot, xTime()); delete options; - delete effects; delete atoms; }