From 565d406fa5199c21593e0b90a577648c7f97eff9 Mon Sep 17 00:00:00 2001 From: Colin Leroy Date: Sun, 19 Aug 2007 12:16:02 +0000 Subject: [PATCH] 2007-08-19 [colin] 2.10.0cvs134 * src/imap.c Remove useless menu updates on session lock/unlock --- ChangeLog | 5 +++++ PATCHSETS | 1 + configure.ac | 2 +- src/imap.c | 10 ---------- 4 files changed, 7 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index a70e93265..2f51e206e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-08-19 [colin] 2.10.0cvs134 + + * src/imap.c + Remove useless menu updates on session lock/unlock + 2007-08-19 [colin] 2.10.0cvs133 * src/etpan/imap-thread.c diff --git a/PATCHSETS b/PATCHSETS index a22021a2e..351d541c2 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -2788,3 +2788,4 @@ ( cvs diff -u -r 1.1.2.3 -r 1.1.2.4 src/editaddress_other_attributes_ldap.c; ) > 2.10.0cvs131.patchset ( cvs diff -u -r 1.26.2.33 -r 1.26.2.34 src/foldersel.c; cvs diff -u -r 1.207.2.174 -r 1.207.2.175 src/folderview.c; cvs diff -u -r 1.395.2.320 -r 1.395.2.321 src/summaryview.c; ) > 2.10.0cvs132.patchset ( cvs diff -u -r 1.1.4.82 -r 1.1.4.83 src/etpan/imap-thread.c; ) > 2.10.0cvs133.patchset +( cvs diff -u -r 1.179.2.181 -r 1.179.2.182 src/imap.c; ) > 2.10.0cvs134.patchset diff --git a/configure.ac b/configure.ac index 1813e5564..f35102662 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=10 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=133 +EXTRA_VERSION=134 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/imap.c b/src/imap.c index 9a0202dc7..0e60d6fe0 100644 --- a/src/imap.c +++ b/src/imap.c @@ -706,11 +706,6 @@ static void lock_session(IMAPSession *session) if (session->busy) debug_print(" SESSION WAS LOCKED !! \n"); session->busy = TRUE; - mainwin = mainwindow_get_mainwindow(); - if (mainwin) { - toolbar_main_set_sensitive(mainwin); - main_window_set_menu_sensitive(mainwin); - } } else { debug_print("can't lock null session\n"); } @@ -723,11 +718,6 @@ static void unlock_session(IMAPSession *session) debug_print("unlocking session %p\n", session); session->busy = FALSE; - mainwin = mainwindow_get_mainwindow(); - if (mainwin) { - toolbar_main_set_sensitive(mainwin); - main_window_set_menu_sensitive(mainwin); - } } else { debug_print("can't unlock null session\n"); } -- 2.25.1