From b05a2b14c8c4609548fa286807dd3371c9302d1e Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Tue, 5 Dec 2000 16:27:01 +0000 Subject: Fix a typo so that toggling the "remember password" checkbox will activate * 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. svn path=/trunk/; revision=6796 --- mail/ChangeLog | 6 ++++++ mail/mail-config-gui.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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 + + * 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 * 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, -- cgit v1.2.3