diff options
author | Rodney Dawes <dobey@ximian.com> | 2004-02-20 05:40:41 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-02-20 05:40:41 +0800 |
commit | 0f8ef94df505311954002fd868a800fcb0c38dfc (patch) | |
tree | fe52b99d31988516f5cb37b46fd648b5f70b15aa | |
parent | 7ed1e7cc4810f2ca5a48b88e2fbf2041e9ef4f6f (diff) | |
download | gsoc2013-evolution-0f8ef94df505311954002fd868a800fcb0c38dfc.tar.gz gsoc2013-evolution-0f8ef94df505311954002fd868a800fcb0c38dfc.tar.zst gsoc2013-evolution-0f8ef94df505311954002fd868a800fcb0c38dfc.zip |
Don't set the timeout id to 0 and then immediately return FALSE, which
2004-02-19 Rodney Dawes <dobey@ximian.com>
* em-folder-tree.c (emft_save_state): Don't set the timeout id to 0
and then immediately return FALSE, which tries to remove the timeout
svn path=/trunk/; revision=24798
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-folder-tree.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index efa25fe3bc..2a856239d7 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2004-02-19 Rodney Dawes <dobey@ximian.com> + + * em-folder-tree.c (emft_save_state): Don't set the timeout id to 0 + and then immediately return FALSE, which tries to remove the timeout + 2004-02-19 Not Zed <NotZed@Ximian.com> * mail-send-recv.c (get_receive_type): diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c index fa537761ab..19f31b5f96 100644 --- a/mail/em-folder-tree.c +++ b/mail/em-folder-tree.c @@ -2426,7 +2426,6 @@ emft_save_state (EMFolderTree *emft) struct _EMFolderTreePrivate *priv = emft->priv; em_folder_tree_model_save_expanded (priv->model); - priv->save_state_id = 0; return FALSE; } |