aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author4 <NotZed@Ximian.com>2001-10-25 03:00:22 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-10-25 03:00:22 +0800
commitb61e480c425ce7eac8dc9c7b852261a936fdc3fc (patch)
tree47a45651927d85ba92c60482e756492d28109749
parent5cd755bc7d1779f92bbce5abd3eed0eeb684fce0 (diff)
downloadgsoc2013-evolution-b61e480c425ce7eac8dc9c7b852261a936fdc3fc.tar
gsoc2013-evolution-b61e480c425ce7eac8dc9c7b852261a936fdc3fc.tar.gz
gsoc2013-evolution-b61e480c425ce7eac8dc9c7b852261a936fdc3fc.tar.bz2
gsoc2013-evolution-b61e480c425ce7eac8dc9c7b852261a936fdc3fc.tar.lz
gsoc2013-evolution-b61e480c425ce7eac8dc9c7b852261a936fdc3fc.tar.xz
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
-rw-r--r--mail/ChangeLog8
-rw-r--r--mail/folder-browser-factory.c8
-rw-r--r--mail/folder-browser-ui.c8
-rw-r--r--mail/message-browser.c4
4 files changed, 18 insertions, 10 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 3631372b77..cb019d7ef8 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,11 @@
+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):
+
2001-10-24 Jon Trowbridge <trow@ximian.com>
* mail-search.c (mail_search_construct): Fixed some weird casting
diff --git a/mail/folder-browser-factory.c b/mail/folder-browser-factory.c
index c398e8b748..52f39a8218 100644
--- a/mail/folder-browser-factory.c
+++ b/mail/folder-browser-factory.c
@@ -87,13 +87,13 @@ control_activate (BonoboControl *control,
folder_browser = bonobo_control_get_widget (control);
folder_browser_set_ui_component (FOLDER_BROWSER (folder_browser), uic);
- bonobo_ui_component_freeze (uic, NULL);
+ /*bonobo_ui_component_freeze (uic, NULL);*/
folder_browser_ui_add_global (fb);
folder_browser_ui_add_list (fb);
folder_browser_ui_add_message (fb);
- bonobo_ui_component_thaw (uic, NULL);
+ /*bonobo_ui_component_thaw (uic, NULL);*/
folder_browser_set_shell_view(fb, fb_get_svi (control));
@@ -106,12 +106,12 @@ control_deactivate (BonoboControl *control,
BonoboUIComponent *uic,
FolderBrowser *fb)
{
- bonobo_ui_component_freeze (uic, NULL);
+ /*bonobo_ui_component_freeze (uic, NULL);*/
folder_browser_ui_rm_list (fb);
folder_browser_ui_rm_all (fb);
- bonobo_ui_component_thaw (uic, NULL);
+ /*bonobo_ui_component_thaw (uic, NULL);*/
if (fb->folder)
mail_sync_folder (fb->folder, NULL, NULL);
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);
}
diff --git a/mail/message-browser.c b/mail/message-browser.c
index 71a0a4464d..b167f39127 100644
--- a/mail/message-browser.c
+++ b/mail/message-browser.c
@@ -182,7 +182,7 @@ set_bonobo_ui (GtkWidget *widget, FolderBrowser *fb)
/* Load our UI */
- bonobo_ui_component_freeze (uic, NULL);
+ /*bonobo_ui_component_freeze (uic, NULL);*/
bonobo_ui_util_set_ui (uic, EVOLUTION_DATADIR, "evolution-mail-messagedisplay.xml", "evolution-mail");
/* Load the appropriate UI stuff from the folder browser */
@@ -204,7 +204,7 @@ set_bonobo_ui (GtkWidget *widget, FolderBrowser *fb)
/* Done */
- bonobo_ui_component_thaw (uic, NULL);
+ /*bonobo_ui_component_thaw (uic, NULL);*/
}