diff options
Diffstat (limited to 'src/desktop.cpp')
| -rw-r--r-- | src/desktop.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
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); } |
