diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-09 13:57:29 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-09 13:57:29 +0800 |
commit | bfb04358030f4fb84ffa074b2c8f00ce9e9c0c63 (patch) | |
tree | fe909c280ee8482434494f35595bc6e74aea740e | |
parent | cae0d7fb4539887d009aa0803b5fdcb5537ee1d5 (diff) | |
download | gsoc2013-evolution-bfb04358030f4fb84ffa074b2c8f00ce9e9c0c63.tar gsoc2013-evolution-bfb04358030f4fb84ffa074b2c8f00ce9e9c0c63.tar.gz gsoc2013-evolution-bfb04358030f4fb84ffa074b2c8f00ce9e9c0c63.tar.bz2 gsoc2013-evolution-bfb04358030f4fb84ffa074b2c8f00ce9e9c0c63.tar.lz gsoc2013-evolution-bfb04358030f4fb84ffa074b2c8f00ce9e9c0c63.tar.xz gsoc2013-evolution-bfb04358030f4fb84ffa074b2c8f00ce9e9c0c63.tar.zst gsoc2013-evolution-bfb04358030f4fb84ffa074b2c8f00ce9e9c0c63.zip |
Fixed a warning.
2000-08-09 Christopher James Lahey <clahey@helixcode.com>
* gui/component/addressbook.c: Fixed a warning.
svn path=/trunk/; revision=4641
-rw-r--r-- | addressbook/ChangeLog | 4 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook.c | 2 |
2 files changed, 5 insertions, 1 deletions
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 <clahey@helixcode.com> + + * gui/component/addressbook.c: Fixed a warning. + 2000-08-09 Ettore Perazzoli <ettore@helixcode.com> * 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\" \"\")"); |