diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-24 23:02:59 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:19 +0800 |
commit | 672132f8a0098b029cf999f79b605058ee8796d1 (patch) | |
tree | 2b7f595151b54577ae6b4d4ccc494efdc58b10a2 /modules/mail | |
parent | 8decdbc4cb82c5cda0df7f5f251832f3e8f06e4f (diff) | |
download | gsoc2013-evolution-672132f8a0098b029cf999f79b605058ee8796d1.tar gsoc2013-evolution-672132f8a0098b029cf999f79b605058ee8796d1.tar.gz gsoc2013-evolution-672132f8a0098b029cf999f79b605058ee8796d1.tar.bz2 gsoc2013-evolution-672132f8a0098b029cf999f79b605058ee8796d1.tar.lz gsoc2013-evolution-672132f8a0098b029cf999f79b605058ee8796d1.tar.xz gsoc2013-evolution-672132f8a0098b029cf999f79b605058ee8796d1.tar.zst gsoc2013-evolution-672132f8a0098b029cf999f79b605058ee8796d1.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/mail')
-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); |