[ekiga] Made the codecsbox code manage its conf notifiers more carefully
- From: Julien Puydt <jpuydt src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [ekiga] Made the codecsbox code manage its conf notifiers more carefully
- Date: Mon, 21 Jan 2013 10:18:55 +0000 (UTC)
commit ca690445f58ee5e66e04a39da88b6b6a468c20e7
Author: Julien Puydt <jpuydt free fr>
Date: Mon Jan 21 10:52:06 2013 +0100
Made the codecsbox code manage its conf notifiers more carefully
lib/engine/gui/gtk-core/codecsbox.cpp | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/lib/engine/gui/gtk-core/codecsbox.cpp b/lib/engine/gui/gtk-core/codecsbox.cpp
index c8f5956..c6e918d 100644
--- a/lib/engine/gui/gtk-core/codecsbox.cpp
+++ b/lib/engine/gui/gtk-core/codecsbox.cpp
@@ -58,6 +58,7 @@ struct _CodecsBoxPrivate
{
Ekiga::Call::StreamType type;
GtkWidget *codecs_list;
+ gpointer notifier;
};
enum { TYPE = 1 };
@@ -476,6 +477,9 @@ codecs_box_dispose (GObject *obj)
self = CODECS_BOX (obj);
+ if (self->priv->notifier)
+ gm_conf_notifier_remove (self->priv->notifier);
+ self->priv->notifier = NULL;
self->priv->codecs_list = NULL;
G_OBJECT_CLASS (codecs_box_parent_class)->dispose (obj);
@@ -533,11 +537,13 @@ codecs_box_set_property (GObject *obj,
g_slist_free (list);
if (self->priv->type == Ekiga::Call::Audio)
- gm_conf_notifier_add (AUDIO_CODECS_KEY "media_list",
- codecs_list_changed_nt, GTK_WIDGET (self));
+ self->priv->notifier =
+ gm_conf_notifier_add (AUDIO_CODECS_KEY "media_list",
+ codecs_list_changed_nt, GTK_WIDGET (self));
else
- gm_conf_notifier_add (VIDEO_CODECS_KEY "media_list",
- codecs_list_changed_nt, GTK_WIDGET (self));
+ self->priv->notifier =
+ gm_conf_notifier_add (VIDEO_CODECS_KEY "media_list",
+ codecs_list_changed_nt, GTK_WIDGET (self));
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]