From bfb04358030f4fb84ffa074b2c8f00ce9e9c0c63 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 9 Aug 2000 05:57:29 +0000 Subject: Fixed a warning. 2000-08-09 Christopher James Lahey * gui/component/addressbook.c: Fixed a warning. svn path=/trunk/; revision=4641 --- addressbook/ChangeLog | 4 ++++ addressbook/gui/component/addressbook.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'addressbook') diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 6b7e988d22..2deaa194fd 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,7 @@ +2000-08-09 Christopher James Lahey + + * gui/component/addressbook.c: Fixed a warning. + 2000-08-09 Ettore Perazzoli * gui/component/addressbook.c (control_activate): Add the stock diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index 561f8b8717..ffc40a3424 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -440,7 +440,7 @@ search_entry_activated (GtkWidget* widget, gpointer user_data) if (search_word && strlen (search_word)) search_query = g_strdup_printf ( "(contains \"x-evolution-any-field\" \"%s\")", - search_word, search_word); + search_word); else search_query = g_strdup ( "(contains \"full_name\" \"\")"); -- cgit