diff options
author | Chris Toshok <toshok@ximian.com> | 2002-08-02 08:58:54 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-08-02 08:58:54 +0800 |
commit | 63f0feb6647e76dfea69f588959ef00a5fa9c1fe (patch) | |
tree | e7d05adfd9c6f19f929e9f73f7818523d6374eda | |
parent | 82f09c66c584eb4154ff714066b1e071c75b9598 (diff) | |
download | gsoc2013-evolution-63f0feb6647e76dfea69f588959ef00a5fa9c1fe.tar.gz gsoc2013-evolution-63f0feb6647e76dfea69f588959ef00a5fa9c1fe.tar.zst gsoc2013-evolution-63f0feb6647e76dfea69f588959ef00a5fa9c1fe.zip |
[ fixes bug #25958 ] use FULL_NAME in the case where we're untoggling a
2002-08-01 Chris Toshok <toshok@ximian.com>
[ fixes bug #25958 ]
* gui/component/addressbook.c (alphabet_state_changed): use
FULL_NAME in the case where we're untoggling a letter, and... well
use FULL_NAME in the other case too - we should never pop up the
advanced dialog.
svn path=/trunk/; revision=17683
-rw-r--r-- | addressbook/ChangeLog | 8 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook.c | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 218d3164ca..928468ad2f 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,13 @@ 2002-08-01 Chris Toshok <toshok@ximian.com> + [ fixes bug #25958 ] + * gui/component/addressbook.c (alphabet_state_changed): use + FULL_NAME in the case where we're untoggling a letter, and... well + use FULL_NAME in the other case too - we should never pop up the + advanced dialog. + +2002-08-01 Chris Toshok <toshok@ximian.com> + * gui/component/select-names/e-select-names.h (struct _ESelectNames): no more search_entry. diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index 83b4f294ae..5a84addd3e 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -738,10 +738,10 @@ alphabet_state_changed (EAddressbookView *eav, gunichar letter, AddressbookView { view->ignore_search_changes = TRUE; if (letter == 0) { - e_search_bar_set_item_id (view->search, ESB_ANY); + e_search_bar_set_item_id (view->search, ESB_FULL_NAME); e_search_bar_set_text (view->search, ""); } else { - e_search_bar_set_item_id (view->search, ESB_ADVANCED); + e_search_bar_set_item_id (view->search, ESB_FULL_NAME); } view->ignore_search_changes = FALSE; } |