diff options
author | Michael Meeks <michael@helixcode.com> | 2000-11-02 14:48:34 +0800 |
---|---|---|
committer | Michael Meeks <mmeeks@src.gnome.org> | 2000-11-02 14:48:34 +0800 |
commit | e7fa8245ccf248c858c304795138b4efd73e103e (patch) | |
tree | ac73cec8e2c64798399fc99e31a37df1278e14ee /shell/e-shell-view.c | |
parent | 3b60a3985590ec48406d99a788d96cb3e43c1d64 (diff) | |
download | gsoc2013-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 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index 45f4fa0ef7..f3ce68ad07 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -56,7 +56,7 @@ #include <gal/e-paned/e-hpaned.h> -static BonoboWinClass *parent_class = NULL; +static BonoboWindowClass *parent_class = NULL; struct _EShellViewPrivate { /* The shell. */ @@ -508,7 +508,7 @@ setup_widgets (EShellView *shell_view) e_paned_add2 (E_PANED (priv->hpaned), priv->view_vbox); e_paned_set_position (E_PANED (priv->hpaned), DEFAULT_SHORTCUT_BAR_WIDTH); - bonobo_win_set_contents (BONOBO_WIN (shell_view), priv->hpaned); + bonobo_window_set_contents (BONOBO_WINDOW (shell_view), priv->hpaned); /* Show stuff. */ @@ -618,7 +618,7 @@ class_init (EShellViewClass *klass) object_class->destroy = destroy; - parent_class = gtk_type_class (BONOBO_TYPE_WIN); + parent_class = gtk_type_class (BONOBO_TYPE_WINDOW); signals[SHORTCUT_BAR_MODE_CHANGED] = gtk_signal_new ("shortcut_bar_mode_changed", @@ -842,7 +842,7 @@ e_shell_view_construct (EShellView *shell_view, priv = shell_view->priv; - view = E_SHELL_VIEW (bonobo_win_construct (BONOBO_WIN (shell_view), "evolution", "Evolution")); + view = E_SHELL_VIEW (bonobo_window_construct (BONOBO_WINDOW (shell_view), "evolution", "Evolution")); if (!view) { gtk_object_unref (GTK_OBJECT (shell_view)); @@ -859,7 +859,7 @@ e_shell_view_construct (EShellView *shell_view, priv->shell = shell; container = bonobo_ui_container_new (); - bonobo_ui_container_set_win (container, BONOBO_WIN (shell_view)); + bonobo_ui_container_set_win (container, BONOBO_WINDOW (shell_view)); priv->ui_component = bonobo_ui_component_new ("evolution"); bonobo_ui_component_set_container (priv->ui_component, @@ -1337,7 +1337,7 @@ e_shell_view_display_uri (EShellView *shell_view, priv = shell_view->priv; - bonobo_win_freeze (BONOBO_WIN (shell_view)); + bonobo_window_freeze (BONOBO_WINDOW (shell_view)); if (uri == NULL) { gtk_notebook_remove_page (GTK_NOTEBOOK (priv->notebook), 0); @@ -1380,7 +1380,7 @@ e_shell_view_display_uri (EShellView *shell_view, end: update_for_current_uri (shell_view); - bonobo_win_thaw (BONOBO_WIN (shell_view)); + bonobo_window_thaw (BONOBO_WINDOW (shell_view)); return retval; } @@ -1619,4 +1619,4 @@ e_shell_view_load_settings (EShellView *shell_view, } -E_MAKE_TYPE (e_shell_view, "EShellView", EShellView, class_init, init, BONOBO_TYPE_WIN) +E_MAKE_TYPE (e_shell_view, "EShellView", EShellView, class_init, init, BONOBO_TYPE_WINDOW) |