diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-24 23:02:59 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-05-24 23:02:59 +0800 |
commit | ff9fcffeca2bdc37a91e0c2f0cb51f871a3cd7a1 (patch) | |
tree | 2383ff114db06ca92b9b477af849d417e2e6a761 /modules | |
parent | c6d8a030399f9e3d9f38798e99cdeecaf2d5fbbb (diff) | |
download | gsoc2013-evolution-ff9fcffeca2bdc37a91e0c2f0cb51f871a3cd7a1.tar gsoc2013-evolution-ff9fcffeca2bdc37a91e0c2f0cb51f871a3cd7a1.tar.gz gsoc2013-evolution-ff9fcffeca2bdc37a91e0c2f0cb51f871a3cd7a1.tar.bz2 gsoc2013-evolution-ff9fcffeca2bdc37a91e0c2f0cb51f871a3cd7a1.tar.lz gsoc2013-evolution-ff9fcffeca2bdc37a91e0c2f0cb51f871a3cd7a1.tar.xz gsoc2013-evolution-ff9fcffeca2bdc37a91e0c2f0cb51f871a3cd7a1.tar.zst gsoc2013-evolution-ff9fcffeca2bdc37a91e0c2f0cb51f871a3cd7a1.zip |
EMFolderTree: Add an EAlertSink property.
Now EMFolderTree has access to both an EShellBackend and an EAlertSink;
everything it needs to build and submit EActivity instances.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mail/e-mail-shell-sidebar.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/mail/e-mail-shell-sidebar.c b/modules/mail/e-mail-shell-sidebar.c index 760ebb0b2e..643bc6389c 100644 --- a/modules/mail/e-mail-shell-sidebar.c +++ b/modules/mail/e-mail-shell-sidebar.c @@ -149,7 +149,9 @@ mail_shell_sidebar_constructed (GObject *object) container = widget; - widget = e_mail_sidebar_new (E_MAIL_BACKEND (shell_backend)); + widget = e_mail_sidebar_new ( + E_MAIL_BACKEND (shell_backend), + E_ALERT_SINK (shell_sidebar)); gtk_container_add (GTK_CONTAINER (container), widget); mail_shell_sidebar->priv->folder_tree = g_object_ref (widget); gtk_widget_show (widget); |