[notification-daemon] Destroy the stacks on finalize
- From: William Jon McCann <mccann src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [notification-daemon] Destroy the stacks on finalize
- Date: Sat, 26 Jun 2010 23:18:36 +0000 (UTC)
commit b45d5da900adb0daaee157f2e93d95dc11e1dc0b
Author: William Jon McCann <jmccann redhat com>
Date: Thu Jun 24 13:40:06 2010 -0400
Destroy the stacks on finalize
src/daemon/daemon.c | 30 +++++++++++++++++++++++++++++-
1 files changed, 29 insertions(+), 1 deletions(-)
---
diff --git a/src/daemon/daemon.c b/src/daemon/daemon.c
index accf5a1..a96c274 100644
--- a/src/daemon/daemon.c
+++ b/src/daemon/daemon.c
@@ -278,6 +278,7 @@ on_screen_monitors_changed (GdkScreen *screen,
}
g_list_free (windows);
notify_stack_destroy (stack);
+ nscreen->stacks[i] = NULL;
}
/* remove the extra stacks */
@@ -337,7 +338,6 @@ create_screens (NotifyDaemon *daemon)
}
}
-
static void
on_popup_location_changed (GConfClient *client,
guint cnxn_id,
@@ -425,6 +425,31 @@ notify_daemon_init (NotifyDaemon *daemon)
}
static void
+destroy_screens (NotifyDaemon *daemon)
+{
+ GdkDisplay *display;
+ int i;
+ int j;
+
+ display = gdk_display_get_default ();
+
+ for (i = 0; i < daemon->priv->n_screens; i++) {
+ g_signal_handlers_disconnect_by_func (gdk_display_get_screen (display, i),
+ G_CALLBACK (on_screen_monitors_changed),
+ daemon);
+ for (j = 0; i < daemon->priv->screens[i]->n_stacks; j++) {
+ notify_stack_destroy (daemon->priv->screens[i]->stacks[j]);
+ daemon->priv->screens[i]->stacks[j] = NULL;
+ }
+
+ g_free (daemon->priv->screens[i]->stacks);
+ }
+
+ g_free (daemon->priv->screens);
+ daemon->priv->screens = NULL;
+}
+
+static void
notify_daemon_finalize (GObject *object)
{
NotifyDaemon *daemon;
@@ -445,6 +470,9 @@ notify_daemon_finalize (GObject *object)
g_hash_table_destroy (daemon->priv->monitored_window_hash);
g_hash_table_destroy (daemon->priv->idle_reposition_notify_ids);
g_hash_table_destroy (daemon->priv->notification_hash);
+
+ destroy_screens (daemon);
+
g_free (daemon->priv);
G_OBJECT_CLASS (notify_daemon_parent_class)->finalize (object);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]