diff options
author | 4 <NotZed@Ximian.com> | 2001-10-25 03:00:22 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-25 03:00:22 +0800 |
commit | b61e480c425ce7eac8dc9c7b852261a936fdc3fc (patch) | |
tree | 47a45651927d85ba92c60482e756492d28109749 /mail/folder-browser-ui.c | |
parent | 5cd755bc7d1779f92bbce5abd3eed0eeb684fce0 (diff) | |
download | gsoc2013-evolution-b61e480c425ce7eac8dc9c7b852261a936fdc3fc.tar.gz gsoc2013-evolution-b61e480c425ce7eac8dc9c7b852261a936fdc3fc.tar.zst gsoc2013-evolution-b61e480c425ce7eac8dc9c7b852261a936fdc3fc.zip |
Same.
2001-10-24 <NotZed@Ximian.com>
* folder-browser-ui.c (ui_add):
(fbui_sensitize_timeout): Same.
* folder-browser-factory.c (control_activate): Comment out freeze/thaw.
(control_deactivate):
svn path=/trunk/; revision=13990
Diffstat (limited to 'mail/folder-browser-ui.c')
-rw-r--r-- | mail/folder-browser-ui.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/folder-browser-ui.c b/mail/folder-browser-ui.c index 1110470e28..514529a9b9 100644 --- a/mail/folder-browser-ui.c +++ b/mail/folder-browser-ui.c @@ -178,7 +178,7 @@ static void ui_add (FolderBrowser *fb, bonobo_ui_component_add_verb_list_with_data (uic, verb, fb); - bonobo_ui_component_freeze (uic, NULL); + /*bonobo_ui_component_freeze (uic, NULL);*/ file = g_strconcat ("evolution-mail-", name, ".xml", NULL); bonobo_ui_util_set_ui (uic, EVOLUTION_DATADIR, file, "evolution-mail"); @@ -186,7 +186,7 @@ static void ui_add (FolderBrowser *fb, e_pixmaps_update (uic, pixcache); - bonobo_ui_component_thaw (uic, NULL); + /*bonobo_ui_component_thaw (uic, NULL);*/ } /* more complex stuff */ @@ -458,7 +458,7 @@ fbui_sensitize_timeout (gpointer data) int i; if (uic) { - bonobo_ui_component_freeze (uic, NULL); + /*bonobo_ui_component_freeze (uic, NULL);*/ for (iter = fb->sensitize_changes; iter; iter = iter->next) { sd = (struct sensitize_data *) iter->data; @@ -467,7 +467,7 @@ fbui_sensitize_timeout (gpointer data) g_free(sd); } - bonobo_ui_component_thaw (uic, NULL); + /*bonobo_ui_component_thaw (uic, NULL);*/ } else { g_slist_foreach(fb->sensitize_changes, (GFunc)g_free, NULL); } |