diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in | 2 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index d809837a3d..feda786102 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,4 +1,8 @@ -2002-03-13 Ettore Perazzoli <ettore@ximian.com> +2002-03-15 Ettore Perazzoli <ettore@ximian.com> + + * gui/component/addressbook.c (control_activate): Call + `e_search_bar_set_ui_component()' to set the BonoboUIComponent for + the search bar. * gui/component/GNOME_Evolution_Addressbook.oaf.in: Add an icon for the LDAP sources configuration control. diff --git a/addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in b/addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in index 764457a5e1..a8bcaa2ac1 100644 --- a/addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in +++ b/addressbook/gui/component/GNOME_Evolution_Addressbook.oaf.in @@ -160,7 +160,7 @@ <oaf_attribute name="evolution:config_item:icon_name" type="string" value="evolution-contacts.png"/> - + <oaf_attribute name="description" type="string" _value="Configuration control for the Evolution Addressbook."/> diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index 956edc915a..a0f9bda94b 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -395,6 +395,8 @@ control_activate (BonoboControl *control, bonobo_ui_component_set_container (uic, remote_ui_container); bonobo_object_release_unref (remote_ui_container, NULL); + e_search_bar_set_ui_component (view->search, uic); + bonobo_ui_component_add_verb_list_with_data ( uic, verbs, view); |