diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2002-09-26 00:57:00 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2002-09-26 00:57:00 +0800 |
commit | a6f94541f4c39e1ab7b3bd2bbf0b0c97aa000a36 (patch) | |
tree | c2d4ac4494b3a2d9a5056ba0871928b4d450086e /e-util | |
parent | 670238866417464888d06b6b75b9c0b5867c275d (diff) | |
download | gsoc2013-evolution-a6f94541f4c39e1ab7b3bd2bbf0b0c97aa000a36.tar gsoc2013-evolution-a6f94541f4c39e1ab7b3bd2bbf0b0c97aa000a36.tar.gz gsoc2013-evolution-a6f94541f4c39e1ab7b3bd2bbf0b0c97aa000a36.tar.bz2 gsoc2013-evolution-a6f94541f4c39e1ab7b3bd2bbf0b0c97aa000a36.tar.lz gsoc2013-evolution-a6f94541f4c39e1ab7b3bd2bbf0b0c97aa000a36.tar.xz gsoc2013-evolution-a6f94541f4c39e1ab7b3bd2bbf0b0c97aa000a36.tar.zst gsoc2013-evolution-a6f94541f4c39e1ab7b3bd2bbf0b0c97aa000a36.zip |
added a comment about the fix for #30918.
2002-09-25 Rodrigo Moya <rodrigo@ximian.com>
* e-component-listener.c (ping_component_callback): added a comment
about the fix for #30918.
svn path=/trunk/; revision=18214
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-component-listener.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 1ea8456bbd..8afb59211b 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2002-09-25 Rodrigo Moya <rodrigo@ximian.com> + + * e-component-listener.c (ping_component_callback): added a comment + about the fix for #30918. + 2002-09-23 Rodrigo Moya <rodrigo@ximian.com> * e-component-listener.c (ping_component_callback): gtk_object_ref the diff --git a/e-util/e-component-listener.c b/e-util/e-component-listener.c index 9e5ff77ef1..ab8c26e791 100644 --- a/e-util/e-component-listener.c +++ b/e-util/e-component-listener.c @@ -143,6 +143,8 @@ ping_component_callback (gpointer user_data) out: /* the component has died, so we notify and close the timeout */ + + /* we ref the object just in case it gets destroyed in the callbacks */ gtk_object_ref (GTK_OBJECT (cl)); gtk_signal_emit (GTK_OBJECT (cl), comp_listener_signals[COMPONENT_DIED]); |