aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary-mail.c
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2001-06-30 05:12:02 +0800
committerIain Holmes <iain@src.gnome.org>2001-06-30 05:12:02 +0800
commit6ec4e9f82620a7d4d692c4ef00e887ced18b54b7 (patch)
tree6bb908c26ad328bd4accb3e8b9be5bd897558b2f /my-evolution/e-summary-mail.c
parentc386fa4ea63ad3ff98ded1deaadf74b79ae8572e (diff)
downloadgsoc2013-evolution-6ec4e9f82620a7d4d692c4ef00e887ced18b54b7.tar
gsoc2013-evolution-6ec4e9f82620a7d4d692c4ef00e887ced18b54b7.tar.gz
gsoc2013-evolution-6ec4e9f82620a7d4d692c4ef00e887ced18b54b7.tar.bz2
gsoc2013-evolution-6ec4e9f82620a7d4d692c4ef00e887ced18b54b7.tar.lz
gsoc2013-evolution-6ec4e9f82620a7d4d692c4ef00e887ced18b54b7.tar.xz
gsoc2013-evolution-6ec4e9f82620a7d4d692c4ef00e887ced18b54b7.tar.zst
gsoc2013-evolution-6ec4e9f82620a7d4d692c4ef00e887ced18b54b7.zip
Fix a few buggies
svn path=/trunk/; revision=10608
Diffstat (limited to 'my-evolution/e-summary-mail.c')
-rw-r--r--my-evolution/e-summary-mail.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/my-evolution/e-summary-mail.c b/my-evolution/e-summary-mail.c
index f8a3f68f7e..2453a93d6a 100644
--- a/my-evolution/e-summary-mail.c
+++ b/my-evolution/e-summary-mail.c
@@ -137,7 +137,7 @@ new_folder_cb (EvolutionStorageListener *listener,
ESummaryMailFolder *mail_folder;
GList *p;
- /* Don't care about none mail */
+ /* Don't care about non mail */
if (strcmp (folder->type, "mail") != 0 ||
strncmp (folder->physical_uri, "file://", 7) != 0) {
return;
@@ -249,6 +249,7 @@ e_summary_mail_init (ESummary *summary,
mail = g_new (ESummaryMail, 1);
summary->mail = mail;
+
CORBA_exception_init (&ev);
mail->folder_info = oaf_activate_from_id (MAIL_IID, 0, NULL, &ev);
if (BONOBO_EX (&ev)) {
@@ -262,6 +263,7 @@ e_summary_mail_init (ESummary *summary,
/* Create a hash table for the folders */
mail->folders = g_hash_table_new (g_str_hash, g_str_equal);
+ mail->shown = NULL;
/* Create a BonoboListener for all the notifies. */
mail->listener = bonobo_listener_new (NULL, NULL);