aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-03-27 03:30:54 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-03-27 03:30:54 +0800
commit8cca88b4f676ac7cc4b719264c7a6c9d965bc8e2 (patch)
treeb976d38add0304d262b40a1bc86df5535018c587 /my-evolution/e-summary.c
parentf4e863ea7f2ead82a3678cbe8870e01a3a3bf14e (diff)
downloadgsoc2013-evolution-8cca88b4f676ac7cc4b719264c7a6c9d965bc8e2.tar
gsoc2013-evolution-8cca88b4f676ac7cc4b719264c7a6c9d965bc8e2.tar.gz
gsoc2013-evolution-8cca88b4f676ac7cc4b719264c7a6c9d965bc8e2.tar.bz2
gsoc2013-evolution-8cca88b4f676ac7cc4b719264c7a6c9d965bc8e2.tar.lz
gsoc2013-evolution-8cca88b4f676ac7cc4b719264c7a6c9d965bc8e2.tar.xz
gsoc2013-evolution-8cca88b4f676ac7cc4b719264c7a6c9d965bc8e2.tar.zst
gsoc2013-evolution-8cca88b4f676ac7cc4b719264c7a6c9d965bc8e2.zip
New member physical_uri in struct ESummaryMailFolder. (new_folder_cb): Set
* e-summary-mail.c: New member physical_uri in struct ESummaryMailFolder. (new_folder_cb): Set it. (remove_folder_cb): Free it. (make_pretty_foldername): Rewritten to honour the display_name. [#7153] * e-summary.c (destroy): Only remove the source with ID tomorrow_timeout_id if the ID is nonzero. svn path=/trunk/; revision=20521
Diffstat (limited to 'my-evolution/e-summary.c')
-rw-r--r--my-evolution/e-summary.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/my-evolution/e-summary.c b/my-evolution/e-summary.c
index a32713b2de..bc7316d107 100644
--- a/my-evolution/e-summary.c
+++ b/my-evolution/e-summary.c
@@ -167,7 +167,8 @@ destroy (GtkObject *object)
e_summary_tasks_free (summary);
}
- g_source_remove (priv->tomorrow_timeout_id);
+ if (priv->tomorrow_timeout_id != 0)
+ g_source_remove (priv->tomorrow_timeout_id);
if (priv->protocol_hash) {
g_hash_table_foreach (priv->protocol_hash, free_protocol, NULL);