diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-02-03 23:01:58 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-02-07 02:46:40 +0800 |
commit | 31e449ebed6a136e643ec3bf4c0d9f1b3fc87897 (patch) | |
tree | d3ab719626888d56370eee15e2bcc64c2cdbb072 /widgets | |
parent | c211d932475c1b53f118bceda65bc4915e90140a (diff) | |
download | gsoc2013-evolution-31e449ebed6a136e643ec3bf4c0d9f1b3fc87897.tar.gz gsoc2013-evolution-31e449ebed6a136e643ec3bf4c0d9f1b3fc87897.tar.zst gsoc2013-evolution-31e449ebed6a136e643ec3bf4c0d9f1b3fc87897.zip |
Implement account-wide search scope in mail.
Also, let EShellSearchbar handle search state persistence.
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-action-combo-box.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/widgets/misc/e-action-combo-box.c b/widgets/misc/e-action-combo-box.c index 7010dc048b..2fa376d420 100644 --- a/widgets/misc/e-action-combo-box.c +++ b/widgets/misc/e-action-combo-box.c @@ -502,6 +502,7 @@ e_action_combo_box_set_action (EActionComboBox *combo_box, g_object_get ( g_object_ref (action), "action-group", &combo_box->priv->action_group, NULL); + combo_box->priv->action = action; action_combo_box_update_model (combo_box); @@ -526,6 +527,8 @@ e_action_combo_box_set_action (EActionComboBox *combo_box, action_combo_box_action_group_notify_cb), combo_box); } + + g_object_notify (G_OBJECT (combo_box), "action"); } gint |