aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/mail-config-gui.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index df1cab5af2..aae9930ea1 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2000-12-04 Dan Winship <danw@helixcode.com>
+
+ * mail-config-gui.c (service_page_item_new): Fix a typo so that
+ toggling the "remember password" checkbox will activate the "OK"
+ button if it was inactive.
+
2000-12-05 Ettore Perazzoli <ettore@helixcode.com>
* mail-vfolder.c (vfolder_create_storage): Updated the call to
diff --git a/mail/mail-config-gui.c b/mail/mail-config-gui.c
index 513a1bcd5e..43596f3a47 100644
--- a/mail/mail-config-gui.c
+++ b/mail/mail-config-gui.c
@@ -966,7 +966,7 @@ service_page_item_new (MailDialogServicePage *page, MailService *mcs)
item->remember_password = gtk_check_button_new_with_label (
_("Remember this password"));
- gtk_signal_connect (GTK_OBJECT (item->keep_on_server), "toggled",
+ gtk_signal_connect (GTK_OBJECT (item->remember_password), "toggled",
GTK_SIGNAL_FUNC (service_page_item_changed),
page);
gtk_table_attach (GTK_TABLE (table), item->remember_password,