aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2002-11-13 17:39:00 +0800
committerMichael Zucci <zucchi@src.gnome.org>2002-11-13 17:39:00 +0800
commit316e12adf3a30a39a589db519c49fd0f49d87338 (patch)
tree15b9f7d7a3982accac96b786d6f21ac018477464
parentac1de7eaf96bb7adbf0c58ca2c3a3466654aaead (diff)
downloadgsoc2013-evolution-316e12adf3a30a39a589db519c49fd0f49d87338.tar
gsoc2013-evolution-316e12adf3a30a39a589db519c49fd0f49d87338.tar.gz
gsoc2013-evolution-316e12adf3a30a39a589db519c49fd0f49d87338.tar.bz2
gsoc2013-evolution-316e12adf3a30a39a589db519c49fd0f49d87338.tar.lz
gsoc2013-evolution-316e12adf3a30a39a589db519c49fd0f49d87338.tar.xz
gsoc2013-evolution-316e12adf3a30a39a589db519c49fd0f49d87338.tar.zst
gsoc2013-evolution-316e12adf3a30a39a589db519c49fd0f49d87338.zip
bonobo api changes.
2002-11-13 Not Zed <NotZed@Ximian.com> * e-msg-composer.c (setup_ui): bonobo api changes. svn path=/trunk/; revision=18733
-rw-r--r--composer/ChangeLog2
-rw-r--r--composer/e-msg-composer.c6
2 files changed, 5 insertions, 3 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index 0367e3b593..803b59b4a5 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,5 +1,7 @@
2002-11-13 Not Zed <NotZed@Ximian.com>
+ * e-msg-composer.c (setup_ui): bonobo api changes.
+
* e-icon-list.c (e_icon_list_new): Use the right object_new method.
* e-icon-list.h: get rid of BEGIN/END_GNOME_DECLS stuff.
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index cabd5929a7..c5f4ce1803 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -2000,8 +2000,7 @@ setup_ui (EMsgComposer *composer)
char *default_charset;
gboolean hide_smime;
- container = bonobo_ui_container_new ();
- bonobo_ui_container_set_win (container, BONOBO_WINDOW (composer));
+ container = bonobo_window_get_ui_container(BONOBO_WINDOW (composer));
composer->uic = bonobo_ui_component_new_default ();
/* FIXME: handle bonobo exceptions */
@@ -2707,7 +2706,8 @@ map_default_cb (EMsgComposer *composer, gpointer user_data)
bonobo_object_release_unref (pb, NULL);
if (!text || text[0] == '\0') {
- bonobo_control_frame_focus_child (cf, GTK_DIR_TAB_FORWARD);
+#warning "bonobo control frame focus child?"
+ /*bonobo_control_frame_focus_child (cf, GTK_DIR_TAB_FORWARD);*/
g_free (text);
return;
}