From 549b303e9b1d603394fd084a630ee911610eacdb Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Tue, 11 Aug 2009 15:32:39 -0500 Subject: [PATCH] libnm-glib: (NMSettingsConnectionInterface) emit 'removed' signal on successful deletion --- libnm-glib/nm-exported-connection.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libnm-glib/nm-exported-connection.c b/libnm-glib/nm-exported-connection.c index 80391de63a..5d5462eb37 100644 --- a/libnm-glib/nm-exported-connection.c +++ b/libnm-glib/nm-exported-connection.c @@ -135,6 +135,7 @@ do_delete (NMSettingsConnectionInterface *connection, NMSettingsConnectionInterfaceDeleteFunc callback, gpointer user_data) { + g_signal_emit_by_name (connection, "removed"); callback (connection, NULL, user_data); return TRUE; }