diff options
author | Not Zed <NotZed@Ximian.com> | 2002-11-15 17:16:43 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-11-15 17:16:43 +0800 |
commit | 83f7ad5ed8e7b80986b56b891293db7a2d0b5514 (patch) | |
tree | f7a33664b888760716b3329ef1876b7d666ca8ea /mail/mail-summary.c | |
parent | 868a2d664a8ac9d5b9d51833e47c2fe4b7b011d8 (diff) | |
download | gsoc2013-evolution-83f7ad5ed8e7b80986b56b891293db7a2d0b5514.tar gsoc2013-evolution-83f7ad5ed8e7b80986b56b891293db7a2d0b5514.tar.gz gsoc2013-evolution-83f7ad5ed8e7b80986b56b891293db7a2d0b5514.tar.bz2 gsoc2013-evolution-83f7ad5ed8e7b80986b56b891293db7a2d0b5514.tar.lz gsoc2013-evolution-83f7ad5ed8e7b80986b56b891293db7a2d0b5514.tar.xz gsoc2013-evolution-83f7ad5ed8e7b80986b56b891293db7a2d0b5514.tar.zst gsoc2013-evolution-83f7ad5ed8e7b80986b56b891293db7a2d0b5514.zip |
weak notify -> ref.
2002-11-15 Not Zed <NotZed@Ximian.com>
* mail-summary.c (create_summary_view): weak notify -> ref.
* mail-send-recv.c (build_dialogue): weak notify -> ref.
* mail-accounts.c (account_edit_clicked): weak notify -> ref, i
presume this is what jeff meant, 'cause it dont compile otherwise.
svn path=/trunk/; revision=18778
Diffstat (limited to 'mail/mail-summary.c')
-rw-r--r-- | mail/mail-summary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-summary.c b/mail/mail-summary.c index 0ddaa6412f..5e3aaa1161 100644 --- a/mail/mail-summary.c +++ b/mail/mail-summary.c @@ -478,7 +478,7 @@ create_summary_view (ExecutiveSummaryComponentFactory *_factory, bonobo_object_add_interface (component, view); summary->view = view; - g_object_weak_notify ((GObject *) view, (GWeakNotify) view_destroy_cb, summary); + g_object_weak_ref ((GObject *) view, (GWeakNotify) view_destroy_cb, summary); bag = bonobo_property_bag_new_full (get_property, NULL, event_source, summary); |