aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-09-11 19:18:22 +0800
committerChris Lahey <clahey@src.gnome.org>2000-09-11 19:18:22 +0800
commit65b1f8dc1f894bac8fed3e5b923f461ce4e6adda (patch)
tree523c1c6135150f16605319049e0fc73c4da6f86b /addressbook/gui/component
parent0f618ac4cfae7d62fca7c0468458f55f3e4a3e9f (diff)
downloadgsoc2013-evolution-65b1f8dc1f894bac8fed3e5b923f461ce4e6adda.tar
gsoc2013-evolution-65b1f8dc1f894bac8fed3e5b923f461ce4e6adda.tar.gz
gsoc2013-evolution-65b1f8dc1f894bac8fed3e5b923f461ce4e6adda.tar.bz2
gsoc2013-evolution-65b1f8dc1f894bac8fed3e5b923f461ce4e6adda.tar.lz
gsoc2013-evolution-65b1f8dc1f894bac8fed3e5b923f461ce4e6adda.tar.xz
gsoc2013-evolution-65b1f8dc1f894bac8fed3e5b923f461ce4e6adda.tar.zst
gsoc2013-evolution-65b1f8dc1f894bac8fed3e5b923f461ce4e6adda.zip
Made this a bit better balanced.
2000-09-11 Christopher James Lahey <clahey@helixcode.com> * contact-editor/fulladdr.glade: Made this a bit better balanced. * gui/component/addressbook.c: Make the toolbar button for find do the same thing that the menu item for search does. * gui/search/e-addressbook-search-dialog.c: Made the top half of this not expand. svn path=/trunk/; revision=5321
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r--addressbook/gui/component/addressbook.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c
index 7037d41ee2..aca565e756 100644
--- a/addressbook/gui/component/addressbook.c
+++ b/addressbook/gui/component/addressbook.c
@@ -283,6 +283,7 @@ set_book(AddressbookView *view)
NULL);
}
+#if 0
static void
find_contact_cb (BonoboUIHandler *uih, void *user_data, const char *path)
{
@@ -312,8 +313,8 @@ find_contact_cb (BonoboUIHandler *uih, void *user_data, const char *path)
set_query (view, search_text);
g_free (search_text);
}
-
}
+#endif
static void
card_deleted_cb (EBook* book, EBookStatus status, gpointer user_data)
@@ -437,7 +438,7 @@ static GnomeUIInfo gnome_toolbar [] = {
GNOMEUIINFO_SEPARATOR,
- GNOMEUIINFO_ITEM_STOCK (N_("Find"), N_("Find a contact"), find_contact_cb, GNOME_STOCK_PIXMAP_SEARCH),
+ GNOMEUIINFO_ITEM_STOCK (N_("Find"), N_("Find a contact"), search_cb, GNOME_STOCK_PIXMAP_SEARCH),
GNOMEUIINFO_ITEM_STOCK (N_("Print"), N_("Print contacts"), print_cb, GNOME_STOCK_PIXMAP_PRINT),
GNOMEUIINFO_ITEM_STOCK (N_("Delete"), N_("Delete a contact"), delete_contact_cb, GNOME_STOCK_PIXMAP_TRASH),
GNOMEUIINFO_SEPARATOR,