aboutsummaryrefslogtreecommitdiffstats
path: root/mail
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 /mail
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 'mail')
-rw-r--r--mail/mail-threads.c2
-rw-r--r--mail/subscribe-dialog.c6
-rw-r--r--mail/test-mail.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/mail/mail-threads.c b/mail/mail-threads.c
index fae28cbcfb..10502557a6 100644
--- a/mail/mail-threads.c
+++ b/mail/mail-threads.c
@@ -1035,7 +1035,7 @@ retrieve_shell_view_interface_from_control (BonoboControl *control)
return CORBA_OBJECT_NIL;
CORBA_exception_init (&ev);
- shell_view_interface = Bonobo_Unknown_query_interface (control_frame,
+ shell_view_interface = Bonobo_Unknown_queryInterface (control_frame,
"IDL:Evolution/ShellView:1.0",
&ev);
CORBA_exception_free (&ev);
diff --git a/mail/subscribe-dialog.c b/mail/subscribe-dialog.c
index e74ab4f1bd..aa494058e7 100644
--- a/mail/subscribe-dialog.c
+++ b/mail/subscribe-dialog.c
@@ -962,11 +962,11 @@ subscribe_dialog_gui_init (SubscribeDialog *sc)
CORBA_exception_init (&ev);
/* Construct the app */
- sc->app = bonobo_win_new ("subscribe-dialog", "Manage Subscriptions");
+ sc->app = bonobo_window_new ("subscribe-dialog", "Manage Subscriptions");
/* Build the menu and toolbar */
container = bonobo_ui_container_new ();
- bonobo_ui_container_set_win (container, BONOBO_WIN (sc->app));
+ bonobo_ui_container_set_win (container, BONOBO_WINDOW (sc->app));
/* set up the bonobo stuff */
component = bonobo_ui_component_new_default ();
@@ -1092,7 +1092,7 @@ subscribe_dialog_gui_init (SubscribeDialog *sc)
e_paned_add2 (E_PANED (sc->hpaned), sc->table);
e_paned_set_position (E_PANED (sc->hpaned), DEFAULT_STORE_TABLE_WIDTH);
- bonobo_win_set_contents (BONOBO_WIN (sc->app), sc->hpaned);
+ bonobo_window_set_contents (BONOBO_WINDOW (sc->app), sc->hpaned);
#if 0
gtk_widget_show (sc->description);
diff --git a/mail/test-mail.c b/mail/test-mail.c
index c62df3ac3e..917f2a2a2a 100644
--- a/mail/test-mail.c
+++ b/mail/test-mail.c
@@ -24,12 +24,12 @@ create_container (void)
gtk_widget_set_default_colormap (gdk_rgb_get_cmap ());
gtk_widget_set_default_visual (gdk_rgb_get_visual ());
- window = bonobo_win_new ("Test", "test");
+ window = bonobo_window_new ("Test", "test");
gtk_widget_set_usize (GTK_WIDGET (window), 640, 480);
gtk_widget_show (GTK_WIDGET (window));
container = bonobo_ui_container_new ();
- bonobo_ui_container_set_win (BONOBO_WIN (window), container);
+ bonobo_ui_container_set_win (BONOBO_WINDOW (window), container);
control = bonobo_widget_new_control (
"OAFIID:control:evolution-mail:833d5a71-a201-4a0e-b7e6-5475c5c4cb45",