aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-shell-module.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2008-12-29 21:42:07 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-12-29 21:42:07 +0800
commit11e1bc38c325665c24b1c831d009f89b7112ebe5 (patch)
tree6702c58b27499e98ed6be7e903965d9ad1a7f4c6 /mail/e-mail-shell-module.c
parentc6e59dfc5b5a94c727024114c0d047916df33cad (diff)
downloadgsoc2013-evolution-11e1bc38c325665c24b1c831d009f89b7112ebe5.tar
gsoc2013-evolution-11e1bc38c325665c24b1c831d009f89b7112ebe5.tar.gz
gsoc2013-evolution-11e1bc38c325665c24b1c831d009f89b7112ebe5.tar.bz2
gsoc2013-evolution-11e1bc38c325665c24b1c831d009f89b7112ebe5.tar.lz
gsoc2013-evolution-11e1bc38c325665c24b1c831d009f89b7112ebe5.tar.xz
gsoc2013-evolution-11e1bc38c325665c24b1c831d009f89b7112ebe5.tar.zst
gsoc2013-evolution-11e1bc38c325665c24b1c831d009f89b7112ebe5.zip
Get the basic mail browser window working. No message contents yet.
svn path=/branches/kill-bonobo/; revision=36946
Diffstat (limited to 'mail/e-mail-shell-module.c')
-rw-r--r--mail/e-mail-shell-module.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/mail/e-mail-shell-module.c b/mail/e-mail-shell-module.c
index a96a22f024..aef48d2636 100644
--- a/mail/e-mail-shell-module.c
+++ b/mail/e-mail-shell-module.c
@@ -37,6 +37,7 @@
#include "e-mail-shell-module-migrate.h"
#include "e-mail-shell-module-settings.h"
+#include "e-mail-browser.h"
#include "em-account-prefs.h"
#include "em-composer-prefs.h"
#include "em-composer-utils.h"
@@ -611,8 +612,14 @@ mail_shell_module_handle_email_uri_cb (gchar *uri,
else
em_utils_forward_messages (folder, uids, uri);
- } else
- /* FIXME Create a EMailBrowser */;
+ } else {
+ GtkWidget *browser;
+
+ /* XXX Should pass in the shell module. */
+ browser = e_mail_browser_new (mail_shell_module);
+ /* FIXME This is incomplete... */
+ gtk_widget_show (browser);
+ }
exit:
camel_url_free (url);