From 2abf0fc078221715abbd20c8451d300eaf787848 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 10 Feb 2011 18:04:43 +0100 Subject: abrt-gtk: make Delete key actually delete the dump dir Signed-off-by: Denys Vlasenko --- src/daemon/CommLayerServerDBus.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/daemon/CommLayerServerDBus.cpp') diff --git a/src/daemon/CommLayerServerDBus.cpp b/src/daemon/CommLayerServerDBus.cpp index 84c2ea15..2a02b051 100644 --- a/src/daemon/CommLayerServerDBus.cpp +++ b/src/daemon/CommLayerServerDBus.cpp @@ -20,7 +20,6 @@ #include "abrtlib.h" #include "abrt_dbus.h" #include "comm_layer_inner.h" -#include "dbus_common.h" #include "MiddleWare.h" #include "Settings.h" #include "CommLayerServerDBus.h" @@ -524,6 +523,9 @@ int init_dbus() void deinit_dbus() { - if(g_dbus_conn != NULL) + if (g_dbus_conn != NULL) + { dbus_connection_unref(g_dbus_conn); + g_dbus_conn = NULL; + } } -- cgit