diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-02-14 08:30:08 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-02-14 08:30:08 +0800 |
commit | ccd8e3964f548798eb05a430b3ea81b2760069cc (patch) | |
tree | 384bc6d1922e4b3ecf98d698fcd921dceeeeef8a /calendar | |
parent | 4f60c57f314db049153feeb2a8b28cfeaf4fa81a (diff) | |
download | gsoc2013-evolution-ccd8e3964f548798eb05a430b3ea81b2760069cc.tar.gz gsoc2013-evolution-ccd8e3964f548798eb05a430b3ea81b2760069cc.tar.zst gsoc2013-evolution-ccd8e3964f548798eb05a430b3ea81b2760069cc.zip |
Get mail search bar partially working without help from EFilterBar.
Search scope (current folder, current account, etc.) is still ignored.
svn path=/branches/kill-bonobo/; revision=37263
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/modules/e-memo-shell-view-private.c | 3 | ||||
-rw-r--r-- | calendar/modules/e-task-shell-view-private.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/calendar/modules/e-memo-shell-view-private.c b/calendar/modules/e-memo-shell-view-private.c index a945415b03..86b959eb03 100644 --- a/calendar/modules/e-memo-shell-view-private.c +++ b/calendar/modules/e-memo-shell-view-private.c @@ -329,8 +329,7 @@ e_memo_shell_view_execute_search (EMemoShellView *memo_shell_view) shell_window = e_shell_view_get_shell_window (shell_view); action = ACTION (MEMO_SEARCH_ANY_FIELD_CONTAINS); - value = gtk_radio_action_get_current_value ( - GTK_RADIO_ACTION (action)); + value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (action)); if (text == NULL || *text == '\0') { text = ""; diff --git a/calendar/modules/e-task-shell-view-private.c b/calendar/modules/e-task-shell-view-private.c index b57e8dd815..e1e14b2547 100644 --- a/calendar/modules/e-task-shell-view-private.c +++ b/calendar/modules/e-task-shell-view-private.c @@ -441,8 +441,7 @@ e_task_shell_view_execute_search (ETaskShellView *task_shell_view) shell_window = e_shell_view_get_shell_window (shell_view); action = ACTION (TASK_SEARCH_ANY_FIELD_CONTAINS); - value = gtk_radio_action_get_current_value ( - GTK_RADIO_ACTION (action)); + value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (action)); if (text == NULL || *text == '\0') { text = ""; |