aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-10-03 02:33:34 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-10-03 02:33:34 +0800
commit11c665c9250652c340c4f9636390f7cdbe1e7565 (patch)
tree3e449e23b7cde1a827a03d5c526af78c398eaeda /calendar
parentdf580510c9788caa00731e6bbd227388b91f4695 (diff)
downloadgsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.tar
gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.tar.gz
gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.tar.bz2
gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.tar.lz
gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.tar.xz
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 'calendar')
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/gui/dialogs/comp-editor.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 7f195ac2fd..76ca1ddc75 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,9 @@
+2001-10-02 Ettore Perazzoli <ettore@ximian.com>
+
+ * gui/dialogs/comp-editor.c (setup_widgets): Use
+ `bonobo_ui_component_new_default()', not
+ `bonobo_ui_component_new()'.
+
2001-10-02 JP Rosevear <jpr@ximian.com>
* cal-client/cal-query.c: use bonobo-exception to tidy
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index 79f692223d..f039c51745 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -196,7 +196,7 @@ setup_widgets (CompEditor *editor)
gtk_signal_connect (GTK_OBJECT (priv->window), "delete_event",
GTK_SIGNAL_FUNC (delete_event_cb), editor);
- priv->uic = bonobo_ui_component_new ("comp-editor");
+ priv->uic = bonobo_ui_component_new_default ();
container = bonobo_ui_container_new ();
bonobo_ui_container_set_win (container, BONOBO_WINDOW (priv->window));
bonobo_ui_component_set_container (priv->uic, BONOBO_OBJREF (container));