aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/task-editor.c
diff options
context:
space:
mode:
authorMichael Meeks <michael@helixcode.com>2000-11-02 14:48:34 +0800
committerMichael Meeks <mmeeks@src.gnome.org>2000-11-02 14:48:34 +0800
commite7fa8245ccf248c858c304795138b4efd73e103e (patch)
treeac73cec8e2c64798399fc99e31a37df1278e14ee /calendar/gui/dialogs/task-editor.c
parent3b60a3985590ec48406d99a788d96cb3e43c1d64 (diff)
downloadgsoc2013-evolution-e7fa8245ccf248c858c304795138b4efd73e103e.tar
gsoc2013-evolution-e7fa8245ccf248c858c304795138b4efd73e103e.tar.gz
gsoc2013-evolution-e7fa8245ccf248c858c304795138b4efd73e103e.tar.bz2
gsoc2013-evolution-e7fa8245ccf248c858c304795138b4efd73e103e.tar.lz
gsoc2013-evolution-e7fa8245ccf248c858c304795138b4efd73e103e.tar.xz
gsoc2013-evolution-e7fa8245ccf248c858c304795138b4efd73e103e.tar.zst
gsoc2013-evolution-e7fa8245ccf248c858c304795138b4efd73e103e.zip
The big api rename ...
2000-11-02 Michael Meeks <michael@helixcode.com> * The big api rename ... svn path=/trunk/; revision=6346
Diffstat (limited to 'calendar/gui/dialogs/task-editor.c')
-rw-r--r--calendar/gui/dialogs/task-editor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c
index d64db8ab6b..8ae2c7d1d6 100644
--- a/calendar/gui/dialogs/task-editor.c
+++ b/calendar/gui/dialogs/task-editor.c
@@ -269,7 +269,7 @@ task_editor_construct (TaskEditor *tedit)
goto error;
}
- bonobo_win = bonobo_win_new ("event-editor-dialog", "Event Editor");
+ bonobo_win = bonobo_window_new ("event-editor-dialog", "Event Editor");
/* FIXME: The sucking bit */
{
@@ -283,14 +283,14 @@ task_editor_construct (TaskEditor *tedit)
}
gtk_widget_ref (contents);
gtk_container_remove (GTK_CONTAINER (contents->parent), contents);
- bonobo_win_set_contents (BONOBO_WIN (bonobo_win), contents);
+ bonobo_window_set_contents (BONOBO_WINDOW (bonobo_win), contents);
gtk_widget_destroy (priv->app);
priv->app = GTK_WIDGET (bonobo_win);
}
{
BonoboUIContainer *container = bonobo_ui_container_new ();
- bonobo_ui_container_set_win (container, BONOBO_WIN (priv->app));
+ bonobo_ui_container_set_win (container, BONOBO_WINDOW (priv->app));
bonobo_ui_component_set_container (
priv->uic, bonobo_object_corba_objref (BONOBO_OBJECT (container)));
}
@@ -942,7 +942,7 @@ debug_xml_cb (GtkWidget *widget, gpointer data)
TaskEditor *tedit = TASK_EDITOR (data);
TaskEditorPrivate *priv = tedit->priv;
- bonobo_win_dump (BONOBO_WIN (priv->app), "on demand");
+ bonobo_window_dump (BONOBO_WINDOW (priv->app), "on demand");
}
/* File/Save callback */