diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-03 02:33:34 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-03 02:33:34 +0800 |
commit | 11c665c9250652c340c4f9636390f7cdbe1e7565 (patch) | |
tree | 3e449e23b7cde1a827a03d5c526af78c398eaeda /mail | |
parent | df580510c9788caa00731e6bbd227388b91f4695 (diff) | |
download | gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.tar.gz gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.tar.zst gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.zip |
Use `bonobo_ui_component_new_default()', not `bonobo_ui_component_new()'.
* e-shell-view.c (e_shell_view_construct): Use
`bonobo_ui_component_new_default()', not
`bonobo_ui_component_new()'.
* mail-account-gui.c (launch_signature_editor): Use
`bonobo_ui_component_new_default()', not
`bonobo_ui_component_new()'.
* e-msg-composer.c (setup_ui): Use
`bonobo_ui_component_new_default()', not
`bonobo_ui_component_new()'.
* gui/dialogs/comp-editor.c (setup_widgets): Use
`bonobo_ui_component_new_default()', not
`bonobo_ui_component_new()'.
svn path=/trunk/; revision=13306
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-account-gui.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index d2819f162a..7156e72bc1 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2001-10-02 Ettore Perazzoli <ettore@ximian.com> + + * mail-account-gui.c (launch_signature_editor): Use + `bonobo_ui_component_new_default()', not + `bonobo_ui_component_new()'. + 2001-10-01 Jon Trowbridge <trow@ximian.com> * mail-display.c (on_url_requested): Make sure we aren't dealing diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c index 3b048bb86c..d9a0da12c5 100644 --- a/mail/mail-account-gui.c +++ b/mail/mail-account-gui.c @@ -1133,7 +1133,7 @@ launch_signature_editor (MailAccountGui *gui, const gchar *filename, gboolean ht container = bonobo_ui_container_new (); bonobo_ui_container_set_win (container, BONOBO_WINDOW (editor->win)); - component = bonobo_ui_component_new ("evolution-signature-editor"); + component = bonobo_ui_component_new_default (); bonobo_ui_component_set_container (component, bonobo_object_corba_objref (BONOBO_OBJECT (container))); bonobo_ui_component_add_verb_list_with_data (component, verbs, editor); bonobo_ui_util_set_ui (component, EVOLUTION_DATADIR, "evolution-signature-editor.xml", "evolution-signature-editor"); |