summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlukefromdc <[email protected]>2017-07-26 01:56:46 -0400
committerlukefromdc <[email protected]>2017-08-13 14:37:24 -0400
commit9f43dd5c7c37b84960d06a98a4738ee40d8bfd50 (patch)
tree17303dcfb3aa90302b968c07ae0959acfd3a73e9
parent4d347a9afca23731a4751f8761b1974e4f1ef16f (diff)
downloadmate-panel-9f43dd5c7c37b84960d06a98a4738ee40d8bfd50.tar.bz2
mate-panel-9f43dd5c7c37b84960d06a98a4738ee40d8bfd50.tar.xz
wncklet: stop segfaults, warnings on removing in-process switcher, window-list
Fixes window list, workspace switcher. Window menu and show desktop no warnings or segfaults on removal when built in process
-rw-r--r--applets/wncklet/window-list.c39
-rw-r--r--applets/wncklet/workspace-switcher.c32
2 files changed, 51 insertions, 20 deletions
diff --git a/applets/wncklet/window-list.c b/applets/wncklet/window-list.c
index 35bdbd45..e3d2e208 100644
--- a/applets/wncklet/window-list.c
+++ b/applets/wncklet/window-list.c
@@ -63,6 +63,7 @@ static void call_system_monitor(GtkAction* action, TasklistData* tasklist);
static void display_properties_dialog(GtkAction* action, TasklistData* tasklist);
static void display_help_dialog(GtkAction* action, TasklistData* tasklist);
static void display_about_dialog(GtkAction* action, TasklistData* tasklist);
+static void destroy_tasklist(GtkWidget* widget, TasklistData* tasklist);
static void tasklist_update(TasklistData* tasklist)
{
@@ -147,16 +148,6 @@ static void applet_change_pixel_size(MatePanelApplet* applet, gint size, Tasklis
tasklist_update(tasklist);
}
-static void destroy_tasklist(GtkWidget* widget, TasklistData* tasklist)
-{
- g_object_unref(tasklist->settings);
-
- if (tasklist->properties_dialog)
- gtk_widget_destroy(tasklist->properties_dialog);
-
- g_free(tasklist);
-}
-
/* TODO: this is sad, should be used a function to retrieve applications from
* .desktop or some like that. */
static const char* system_monitors[] = {
@@ -694,3 +685,31 @@ static void display_properties_dialog(GtkAction* action, TasklistData* tasklist)
gtk_window_set_screen(GTK_WINDOW(tasklist->properties_dialog), gtk_widget_get_screen(tasklist->applet));
gtk_window_present(GTK_WINDOW(tasklist->properties_dialog));
}
+
+static void destroy_tasklist(GtkWidget* widget, TasklistData* tasklist)
+{
+
+ g_signal_handlers_disconnect_by_func(G_OBJECT(tasklist->applet),
+ G_CALLBACK(applet_change_orient), tasklist);
+ g_signal_handlers_disconnect_by_func(G_OBJECT(tasklist->applet),
+ G_CALLBACK(applet_change_pixel_size), tasklist);
+ g_signal_handlers_disconnect_by_func(G_OBJECT(tasklist->applet),
+ G_CALLBACK(applet_change_background), tasklist);
+ g_signal_handlers_disconnect_by_func (tasklist->settings,
+ G_CALLBACK (display_all_workspaces_changed),
+ tasklist);
+ g_signal_handlers_disconnect_by_func (tasklist->settings,
+ G_CALLBACK (group_windows_changed),
+ tasklist);
+ g_signal_handlers_disconnect_by_func (tasklist->settings,
+ G_CALLBACK (move_unminimized_windows_changed),
+ tasklist);
+
+ g_object_unref(tasklist->settings);
+
+ if (tasklist->properties_dialog)
+ gtk_widget_destroy(tasklist->properties_dialog);
+
+ g_free(tasklist);
+
+}
diff --git a/applets/wncklet/workspace-switcher.c b/applets/wncklet/workspace-switcher.c
index f9d422ab..05ca4432 100644
--- a/applets/wncklet/workspace-switcher.c
+++ b/applets/wncklet/workspace-switcher.c
@@ -86,6 +86,7 @@ typedef struct {
static void display_properties_dialog(GtkAction* action, PagerData* pager);
static void display_help_dialog(GtkAction* action, PagerData* pager);
static void display_about_dialog(GtkAction* action, PagerData* pager);
+static void destroy_pager(GtkWidget* widget, PagerData* pager);
static void pager_update(PagerData* pager)
{
@@ -319,16 +320,6 @@ static gboolean applet_scroll(MatePanelApplet* applet, GdkEventScroll* event, Pa
return TRUE;
}
-static void destroy_pager(GtkWidget* widget, PagerData* pager)
-{
- g_object_unref (pager->settings);
-
- if (pager->properties_dialog)
- gtk_widget_destroy(pager->properties_dialog);
-
- g_free(pager);
-}
-
static const GtkActionEntry pager_menu_actions[] = {
{
"PagerPreferences",
@@ -967,3 +958,24 @@ static void display_properties_dialog(GtkAction* action, PagerData* pager)
gtk_window_set_screen(GTK_WINDOW(pager->properties_dialog), gtk_widget_get_screen(pager->applet));
gtk_window_present(GTK_WINDOW(pager->properties_dialog));
}
+
+static void destroy_pager(GtkWidget* widget, PagerData* pager)
+{
+ g_signal_handlers_disconnect_by_func (pager->settings,
+ G_CALLBACK (num_rows_changed),
+ pager);
+ g_signal_handlers_disconnect_by_func (pager->settings,
+ G_CALLBACK (display_workspace_names_changed),
+ pager);
+ g_signal_handlers_disconnect_by_func (pager->settings,
+ G_CALLBACK (all_workspaces_changed),
+ pager);
+ g_signal_handlers_disconnect_by_func (pager->settings,
+ G_CALLBACK (wrap_workspaces_changed),
+ pager);
+ g_object_unref (pager->settings);
+
+ if (pager->properties_dialog)
+ gtk_widget_destroy(pager->properties_dialog);
+ g_free(pager);
+}