diff options
author | Larry Ewing <lewing@ximian.com> | 2001-09-18 13:26:00 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2001-09-18 13:26:00 +0800 |
commit | 61f7037ff4b1ea359bedc2348177fedf7d15b605 (patch) | |
tree | 28ce5a9064c788839776433899941f5a89d7410a /addressbook/gui | |
parent | f774ea81e5d3e2607da601eeaf1b875dbe5b259a (diff) | |
download | gsoc2013-evolution-61f7037ff4b1ea359bedc2348177fedf7d15b605.tar.gz gsoc2013-evolution-61f7037ff4b1ea359bedc2348177fedf7d15b605.tar.zst gsoc2013-evolution-61f7037ff4b1ea359bedc2348177fedf7d15b605.zip |
unref the destination regardless of whether we get an email addresss.
2001-09-18 Larry Ewing <lewing@ximian.com>
* gui/component/select-names/e-select-names-completion.c
(book_query_process_card_list): unref the destination regardless
of whether we get an email addresss.
svn path=/trunk/; revision=12937
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-completion.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-completion.c b/addressbook/gui/component/select-names/e-select-names-completion.c index 0a34361c62..49a3ecf4b2 100644 --- a/addressbook/gui/component/select-names/e-select-names-completion.c +++ b/addressbook/gui/component/select-names/e-select-names-completion.c @@ -623,9 +623,9 @@ book_query_process_card_list (ESelectNamesCompletion *comp, const GList *cards) } else { e_completion_match_unref (match); } - - gtk_object_unref (GTK_OBJECT (dest)); } + + gtk_object_unref (GTK_OBJECT (dest)); } } |