aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-08-14 02:48:24 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-08-14 02:48:24 +0800
commit639b2e2157425d4b4c011c1e74a91bb02a2e9338 (patch)
treedf94a3922c2417485dac521c5432e397e33c16f5
parent90c97ff9b78ea96295402994da5d9b0146bb2c1c (diff)
downloadgsoc2013-evolution-639b2e2157425d4b4c011c1e74a91bb02a2e9338.tar
gsoc2013-evolution-639b2e2157425d4b4c011c1e74a91bb02a2e9338.tar.gz
gsoc2013-evolution-639b2e2157425d4b4c011c1e74a91bb02a2e9338.tar.bz2
gsoc2013-evolution-639b2e2157425d4b4c011c1e74a91bb02a2e9338.tar.lz
gsoc2013-evolution-639b2e2157425d4b4c011c1e74a91bb02a2e9338.tar.xz
gsoc2013-evolution-639b2e2157425d4b4c011c1e74a91bb02a2e9338.tar.zst
gsoc2013-evolution-639b2e2157425d4b4c011c1e74a91bb02a2e9338.zip
Don't wrap the gnome_dialog_run in GDK_THREADS_ENTER/LEAVE
2000-08-13 Jeffrey Stedfast <fejj@helixcode.com> * mail-threads.c (get_password): Don't wrap the gnome_dialog_run in GDK_THREADS_ENTER/LEAVE svn path=/trunk/; revision=4803
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-threads.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 1e7342be4c..f6101c4622 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2000-08-13 Jeffrey Stedfast <fejj@helixcode.com>
+
+ * mail-threads.c (get_password): Don't wrap the gnome_dialog_run
+ in GDK_THREADS_ENTER/LEAVE
+
2000-08-13 Ettore Perazzoli <ettore@helixcode.com>
* folder-browser-factory.c (control_destroy_cb): Remove the
diff --git a/mail/mail-threads.c b/mail/mail-threads.c
index e1707eb3f3..473f1211df 100644
--- a/mail/mail-threads.c
+++ b/mail/mail-threads.c
@@ -847,9 +847,9 @@ get_password (com_msg_t * msg)
button = -1;
} else {
*(msg->reply) = NULL;
- GDK_THREADS_ENTER ();
+ /*GDK_THREADS_ENTER ();*/
button = gnome_dialog_run_and_close (GNOME_DIALOG (dialog));
- GDK_THREADS_LEAVE ();
+ /*GDK_THREADS_LEAVE ();*/
}
if (button == 1 || *(msg->reply) == NULL) {