aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/module
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/module')
-rw-r--r--calendar/module/e-cal-shell-view-actions.c8
-rw-r--r--calendar/module/e-memo-shell-view-actions.c8
-rw-r--r--calendar/module/e-task-shell-view-actions.c8
3 files changed, 21 insertions, 3 deletions
diff --git a/calendar/module/e-cal-shell-view-actions.c b/calendar/module/e-cal-shell-view-actions.c
index 5f5380d919..02b7af609e 100644
--- a/calendar/module/e-cal-shell-view-actions.c
+++ b/calendar/module/e-cal-shell-view-actions.c
@@ -599,7 +599,13 @@ action_search_filter_cb (GtkRadioAction *action,
GtkRadioAction *current,
ECalShellView *cal_shell_view)
{
- e_cal_shell_view_execute_search (cal_shell_view);
+ EShellView *shell_view;
+ EShellWindow *shell_window;
+
+ shell_view = E_SHELL_VIEW (cal_shell_view);
+ shell_window = e_shell_view_get_shell_window (shell_view);
+
+ gtk_action_activate (ACTION (SEARCH_EXECUTE));
}
static GtkActionEntry calendar_entries[] = {
diff --git a/calendar/module/e-memo-shell-view-actions.c b/calendar/module/e-memo-shell-view-actions.c
index 855a7b18b4..1736606abe 100644
--- a/calendar/module/e-memo-shell-view-actions.c
+++ b/calendar/module/e-memo-shell-view-actions.c
@@ -548,7 +548,13 @@ action_search_filter_cb (GtkRadioAction *action,
GtkRadioAction *current,
EMemoShellView *memo_shell_view)
{
- e_memo_shell_view_execute_search (memo_shell_view);
+ EShellView *shell_view;
+ EShellWindow *shell_window;
+
+ shell_view = E_SHELL_VIEW (memo_shell_view);
+ shell_window = e_shell_view_get_shell_window (shell_view);
+
+ gtk_action_activate (ACTION (SEARCH_EXECUTE));
}
static GtkActionEntry memo_entries[] = {
diff --git a/calendar/module/e-task-shell-view-actions.c b/calendar/module/e-task-shell-view-actions.c
index 8431b64624..4deed9fdf0 100644
--- a/calendar/module/e-task-shell-view-actions.c
+++ b/calendar/module/e-task-shell-view-actions.c
@@ -62,7 +62,13 @@ action_search_filter_cb (GtkRadioAction *action,
GtkRadioAction *current,
ETaskShellView *task_shell_view)
{
- e_task_shell_view_execute_search (task_shell_view);
+ EShellView *shell_view;
+ EShellWindow *shell_window;
+
+ shell_view = E_SHELL_VIEW (task_shell_view);
+ shell_window = e_shell_view_get_shell_window (shell_view);
+
+ gtk_action_activate (ACTION (SEARCH_EXECUTE));
}
static void