From: buliabyak Date: Fri, 18 Aug 2006 06:14:00 +0000 (+0000) Subject: disconnect signals on destroying X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=be33a9d93d3eee29431be0c386b99a89d109e374;p=inkscape.git disconnect signals on destroying --- diff --git a/src/desktop.cpp b/src/desktop.cpp index 51580249e..57d89c5bc 100644 --- a/src/desktop.cpp +++ b/src/desktop.cpp @@ -297,6 +297,13 @@ void SPDesktop::destroy() _sel_modified_connection.disconnect(); _sel_changed_connection.disconnect(); _modified_connection.disconnect(); + _commit_connection.disconnect(); + _reconstruction_start_connection.disconnect(); + _reconstruction_finish_connection.disconnect(); + + g_signal_handlers_disconnect_by_func(G_OBJECT (acetate), (gpointer) G_CALLBACK(sp_desktop_root_handler), this); + g_signal_handlers_disconnect_by_func(G_OBJECT (main), (gpointer) G_CALLBACK(sp_desktop_root_handler), this); + g_signal_handlers_disconnect_by_func(G_OBJECT (drawing), (gpointer) G_CALLBACK(_arena_handler), this); while (event_context) { SPEventContext *ec = event_context; @@ -321,8 +328,6 @@ void SPDesktop::destroy() delete _guides_message_context; _guides_message_context = NULL; - _modified_connection.disconnect(); - g_list_free (zooms_past); g_list_free (zooms_future); }