aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-browser.c
diff options
context:
space:
mode:
author2 <NotZed@Ximian.com>2001-11-03 08:07:33 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-11-03 08:07:33 +0800
commite735e8fa8965d907fe91467482e0fb5d00364bc2 (patch)
treea769546f14ac3b4c1fce79c462c24b2f7c6d979c /mail/folder-browser.c
parent8fcca3dc0b5e3355977230ce61dc172652e69032 (diff)
downloadgsoc2013-evolution-e735e8fa8965d907fe91467482e0fb5d00364bc2.tar
gsoc2013-evolution-e735e8fa8965d907fe91467482e0fb5d00364bc2.tar.gz
gsoc2013-evolution-e735e8fa8965d907fe91467482e0fb5d00364bc2.tar.bz2
gsoc2013-evolution-e735e8fa8965d907fe91467482e0fb5d00364bc2.tar.lz
gsoc2013-evolution-e735e8fa8965d907fe91467482e0fb5d00364bc2.tar.xz
gsoc2013-evolution-e735e8fa8965d907fe91467482e0fb5d00364bc2.tar.zst
gsoc2013-evolution-e735e8fa8965d907fe91467482e0fb5d00364bc2.zip
Disconnect from the message_list_built function so we dont do it every
2001-11-02 <NotZed@Ximian.com> * message-browser.c (message_browser_message_list_built): Disconnect from the message_list_built function so we dont do it every time the list is rebuilt. * mail-callbacks.c (composer_send_cb): Disable autosave when we're sending mail. (composer_sent_cb): Re-enable autosave. * folder-browser-ui.c (fbui_sensitize_timeout): Make sure we reset any data we're using on the folderbrowser before doing anything 'cause things could vanish while we're doing it, and also ref/unref the folderbrowser so it doesn't vanish while w'ere working. * folder-browser.c (folder_browser_set_ui_component): If we are changing the ui comp, remove any pending timeouts. For #13719. svn path=/trunk/; revision=14575
Diffstat (limited to 'mail/folder-browser.c')
-rw-r--r--mail/folder-browser.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/mail/folder-browser.c b/mail/folder-browser.c
index 8ff6d97547..0a06090adf 100644
--- a/mail/folder-browser.c
+++ b/mail/folder-browser.c
@@ -69,7 +69,7 @@
#include <camel/camel-mime-message.h>
#include <camel/camel-stream-mem.h>
-#define d(x)
+#define d(x)
#define PARENT_TYPE (gtk_table_get_type ())
@@ -895,6 +895,16 @@ void
folder_browser_set_ui_component (FolderBrowser *fb, BonoboUIComponent *uicomp)
{
g_return_if_fail (IS_FOLDER_BROWSER (fb));
+
+ if (fb->sensitize_timeout_id) {
+ g_source_remove (fb->sensitize_timeout_id);
+ fb->sensitize_timeout_id = 0;
+ }
+
+ if (fb->sensitise_state) {
+ g_hash_table_destroy(fb->sensitise_state);
+ fb->sensitise_state = NULL;
+ }
if (fb->uicomp)
bonobo_object_unref (BONOBO_OBJECT (fb->uicomp));
@@ -1920,7 +1930,7 @@ done_message_selected (CamelFolder *folder, char *uid, CamelMimeMessage *msg, vo
static gboolean
do_message_selected (FolderBrowser *fb)
{
- d(printf ("selecting uid %s (delayed)\n", fb->new_uid ? fb->new_uid : "NONE"));
+ d(printf ("%p: selecting uid %s (delayed)\n", fb, fb->new_uid ? fb->new_uid : "NONE"));
fb->loading_id = 0;
@@ -1944,7 +1954,7 @@ do_message_selected (FolderBrowser *fb)
static void
on_message_selected (MessageList *ml, const char *uid, FolderBrowser *fb)
{
- d(printf ("selecting uid %s (direct)\n", uid ? uid : "NONE"));
+ d(printf ("%p: selecting uid %s (direct)\n", fb, uid ? uid : "NONE"));
if (fb->loading_id != 0)
gtk_timeout_remove (fb->loading_id);