diff options
author | Chris Toshok <toshok@ximian.com> | 2004-01-21 10:19:19 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-01-21 10:19:19 +0800 |
commit | b476b5573e56fb9da9bc7730d920f18b5a771ab1 (patch) | |
tree | 83fe791b612895af9f99c6a9a688c8489bc54334 /addressbook/util | |
parent | 855cc92b474f9fc863915942dbb7193817dc6dc0 (diff) | |
download | gsoc2013-evolution-b476b5573e56fb9da9bc7730d920f18b5a771ab1.tar.gz gsoc2013-evolution-b476b5573e56fb9da9bc7730d920f18b5a771ab1.tar.zst gsoc2013-evolution-b476b5573e56fb9da9bc7730d920f18b5a771ab1.zip |
[ fixes bug #52955 ] handle the case properly where there are no query
2004-01-20 Chris Toshok <toshok@ximian.com>
[ fixes bug #52955 ]
* gui/merging/eab-contact-compare.c (use_common_book_cb): handle
the case properly where there are no query parts (p == 0).
Instead of passing "" to e_book_query_from_string, just set the
query to NULL.
* util/eab-book-util.c (eab_contact_list_to_string): we need to
put a blank line here, so \r\n\r\n, not just \r\n.
svn path=/trunk/; revision=24340
Diffstat (limited to 'addressbook/util')
-rw-r--r-- | addressbook/util/eab-book-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/util/eab-book-util.c b/addressbook/util/eab-book-util.c index 2c80d6f8a1..611944b22d 100644 --- a/addressbook/util/eab-book-util.c +++ b/addressbook/util/eab-book-util.c @@ -200,7 +200,7 @@ eab_contact_list_to_string (GList *contacts) g_string_append (str, vcard_str); if (l->next) - g_string_append (str, "\r\n"); + g_string_append (str, "\r\n\r\n"); } return g_string_free (str, FALSE); |