aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-component.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-05-21 17:10:00 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-21 17:10:00 +0800
commitffa75e6801faaffb2626d83779fe0a91a8f58d3a (patch)
treede74dcb1ab7ea1e4dc93d9421215bb02a2c05f99 /mail/mail-component.c
parent2bc97c08c1ca8057f03b3b3d872eafa306bab22c (diff)
downloadgsoc2013-evolution-ffa75e6801faaffb2626d83779fe0a91a8f58d3a.tar
gsoc2013-evolution-ffa75e6801faaffb2626d83779fe0a91a8f58d3a.tar.gz
gsoc2013-evolution-ffa75e6801faaffb2626d83779fe0a91a8f58d3a.tar.bz2
gsoc2013-evolution-ffa75e6801faaffb2626d83779fe0a91a8f58d3a.tar.lz
gsoc2013-evolution-ffa75e6801faaffb2626d83779fe0a91a8f58d3a.tar.xz
gsoc2013-evolution-ffa75e6801faaffb2626d83779fe0a91a8f58d3a.tar.zst
gsoc2013-evolution-ffa75e6801faaffb2626d83779fe0a91a8f58d3a.zip
add marshaller for p_ppppp call.
2004-05-21 Not Zed <NotZed@Ximian.com> * mail-mt.c (do_call): add marshaller for p_ppppp call. * mail-session.c (get_password): fix for camel api changes. (forget_password): same. ** See #58376. * message-list.c (mail_regen_list): do some timeout foo so we don't keep doing list regnerations if we're getting called too often. God knows what this will break. (message_list_set_selected): removede bug printf. (regen_list_free): move the message-list poking stuff into regen_list_regened. (message_list_set_folder): call mail_regen_cancel to cancel any regen stuff. (mail_regen_cancel): cancel/clear outstanding regenerations. (message_list_destroy): do it here too. (message_list_select_uid): also set the pending select uid if we have a timeout pending. * mail-component.c (impl_createControls): set the defualt parent to the main folderview as soon as its created. * em-folder-tree.c (emft_popup_copy_folder_selected): use get_toplevel rather than get_ancestor. seems the more reliable one. also we're always parented so we shoudl always find a toplevel window. (em_folder_tree_create_folder): same. (emft_popup_delete_response): set error parent. (emft_popup_delete_folder, emft_popup_rename_folder) (emft_popup_rename_folder, emft_popup_rename_folder): svn path=/trunk/; revision=26030
Diffstat (limited to 'mail/mail-component.c')
-rw-r--r--mail/mail-component.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/mail-component.c b/mail/mail-component.c
index ad186f961e..4db24e0baf 100644
--- a/mail/mail-component.c
+++ b/mail/mail-component.c
@@ -531,6 +531,9 @@ impl_createControls (PortableServer_Servant servant,
mc_startup(mail_component);
view_widget = em_folder_browser_new ();
+ /* so error boxes have a parent if none supplied */
+ e_error_default_parent((GtkWindow *)view_widget);
+
tree_widget = (GtkWidget *) em_folder_tree_new_with_model (priv->model);
em_folder_tree_set_excluded ((EMFolderTree *) tree_widget, 0);
em_folder_tree_enable_drag_and_drop ((EMFolderTree *) tree_widget);