diff options
author | Not Zed <NotZed@Ximian.com> | 2002-09-24 12:58:00 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-09-24 12:58:00 +0800 |
commit | c010a1394686dd9a9025347f8c7edd686b221a9e (patch) | |
tree | 306d0fe2cab0b72d16a7a6f2ada86179596207bf /widgets/misc/e-search-bar.c | |
parent | 06513ee88c9a9afe62ec49557717a65d34df1834 (diff) | |
download | gsoc2013-evolution-c010a1394686dd9a9025347f8c7edd686b221a9e.tar gsoc2013-evolution-c010a1394686dd9a9025347f8c7edd686b221a9e.tar.gz gsoc2013-evolution-c010a1394686dd9a9025347f8c7edd686b221a9e.tar.bz2 gsoc2013-evolution-c010a1394686dd9a9025347f8c7edd686b221a9e.tar.lz gsoc2013-evolution-c010a1394686dd9a9025347f8c7edd686b221a9e.tar.xz gsoc2013-evolution-c010a1394686dd9a9025347f8c7edd686b221a9e.tar.zst gsoc2013-evolution-c010a1394686dd9a9025347f8c7edd686b221a9e.zip |
Clear search by setting text to "" and search to first search.
2002-09-24 Not Zed <NotZed@Ximian.com>
* e-search-bar.c (clear_search): Clear search by setting text to
"" and search to first search.
* e-filter-bar.c (option_changed): Revert change of 2002-08-29
below, always do advanced search if we have the advanced id.
Handle clear elsewhere.
(menubar_activated): If we get the advanced menu, set the advanced
option menu, and let that handle it, rather than doing it
ourselves. For #31060 & #29625.
svn path=/trunk/; revision=18191
Diffstat (limited to 'widgets/misc/e-search-bar.c')
-rw-r--r-- | widgets/misc/e-search-bar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/misc/e-search-bar.c b/widgets/misc/e-search-bar.c index 12659d87da..6c95c4e585 100644 --- a/widgets/misc/e-search-bar.c +++ b/widgets/misc/e-search-bar.c @@ -103,7 +103,7 @@ static void clear_search (ESearchBar *esb) { e_search_bar_set_text (esb, ""); - emit_search_activated (esb); + e_search_bar_set_item_id (esb, 0); } /* Frees an array of subitem information */ |