diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-23 17:34:53 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-23 17:34:53 +0800 |
commit | fd1851ec7a26dcce5d909eefde060bee7c643925 (patch) | |
tree | 9c4f8f93b25d8ada399e465d68aa5f781369f212 /addressbook/gui | |
parent | ef435ebae5066a28bee26c14fdfed91a9a7a7cc7 (diff) | |
download | gsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.tar gsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.tar.gz gsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.tar.bz2 gsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.tar.lz gsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.tar.xz gsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.tar.zst gsoc2013-evolution-fd1851ec7a26dcce5d909eefde060bee7c643925.zip |
Fix this to not mess up if the person passes a VCard with a carriage
2000-08-22 Christopher James Lahey <clahey@helixcode.com>
* backend/ebook/e-card.c: Fix this to not mess up if the person
passes a VCard with a carriage return in the mailing address.
* gui/search/e-addressbook-search-dialog.c: Fix an error in the
arguments to rule_context_load.
svn path=/trunk/; revision=4983
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/search/e-addressbook-search-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/search/e-addressbook-search-dialog.c b/addressbook/gui/search/e-addressbook-search-dialog.c index 0109b1914a..35ba3e5334 100644 --- a/addressbook/gui/search/e-addressbook-search-dialog.c +++ b/addressbook/gui/search/e-addressbook-search-dialog.c @@ -97,7 +97,7 @@ get_widget (EAddressbookSearchDialog *view) /* FIXME: hide this in a class */ rule_context_add_part_set(view->context, "partset", filter_part_get_type(), rule_context_add_part, rule_context_next_part); - rule_context_load(view->context, SEARCH_RULE_DIR "/addresstypes.xml", ""); + rule_context_load(view->context, SEARCH_RULE_DIR "/addresstypes.xml", "", NULL, NULL); view->rule = filter_rule_new(); part = rule_context_next_part(view->context, NULL); if (part == NULL) { |