aboutsummaryrefslogtreecommitdiffstats
path: root/wombat
diff options
context:
space:
mode:
authorChris Toshok <toshok@src.gnome.org>2000-04-11 06:09:27 +0800
committerChris Toshok <toshok@src.gnome.org>2000-04-11 06:09:27 +0800
commit467a428552be04aa70c9c9ed860e226f400834ef (patch)
tree2ee888dc7f05c095f1ae1b88e2701983eef19e38 /wombat
parentce76b4034c6ad5b74e69d1f687b9789d649b9c02 (diff)
downloadgsoc2013-evolution-467a428552be04aa70c9c9ed860e226f400834ef.tar
gsoc2013-evolution-467a428552be04aa70c9c9ed860e226f400834ef.tar.gz
gsoc2013-evolution-467a428552be04aa70c9c9ed860e226f400834ef.tar.bz2
gsoc2013-evolution-467a428552be04aa70c9c9ed860e226f400834ef.tar.lz
gsoc2013-evolution-467a428552be04aa70c9c9ed860e226f400834ef.tar.xz
gsoc2013-evolution-467a428552be04aa70c9c9ed860e226f400834ef.tar.zst
gsoc2013-evolution-467a428552be04aa70c9c9ed860e226f400834ef.zip
change the empty search string ("") to the valid (contains "full_name"
* addressbook/gui/minicard/e-minicard-view.c (get_view): change the empty search string ("") to the valid (contains "full_name" ""). * wombat/Makefile.am (wombat_LDADD): reorder so libeutil.la comes after libpas (since it uses the sexp stuff now.) * addressbook/backend/pas/Makefile.am (INCLUDES): add -I$(top_srcdir)/addressbook/backend/ebook * addressbook/backend/pas/pas-backend-file.c (view_destroy): free the search context and unref the sexp. (string_to_dbt): save the zero byte of strings, so we don't have to g_strndup everywhere. (func_contains): new function, implementing the (contains) search function. (vcard_matches_search): generic predicate to tell whether or not a vcard entry matches the current book view. (pas_backend_file_search): rip some of this code out of get_book_view (the portion building the list of cards) and make it use the e-sexp stuff. (pas_backend_file_process_create_card): use vcard_matches_search to only notify if the card will appear in the view. (pas_backend_file_process_remove_card): use vcard_matches_search to only notify if the card will be removed from the view. (pas_backend_file_process_modify_card): use vcard_matches_search to notify if the modified card was added, removed, or changed in the view. svn path=/trunk/; revision=2382
Diffstat (limited to 'wombat')
-rw-r--r--wombat/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/wombat/Makefile.am b/wombat/Makefile.am
index 49371f64ab..6ab086d667 100644
--- a/wombat/Makefile.am
+++ b/wombat/Makefile.am
@@ -18,13 +18,13 @@ wombat_SOURCES = \
wombat_LDADD = \
$(EXTRA_GNOME_LIBS) \
$(BONOBO_HTML_GNOME_LIBS) \
- $(top_builddir)/e-util/libeutil.la \
$(top_builddir)/addressbook/backend/pas/libpas.la \
$(top_builddir)/addressbook/backend/ebook/libebook.la \
$(top_builddir)/calendar/pcs/libpcs.la \
$(top_builddir)/libical/src/libical/libical.la \
$(top_builddir)/calendar/cal-util/libcalutil.la \
$(top_builddir)/libversit/libversit.la \
+ $(top_builddir)/e-util/libeutil.la \
-lgnomevfs
wombat_LDFLAGS = `gnome-config --libs gnorba`