diff options
author | Dan Winship <danw@src.gnome.org> | 2000-12-06 00:27:01 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-12-06 00:27:01 +0800 |
commit | b05a2b14c8c4609548fa286807dd3371c9302d1e (patch) | |
tree | edc68ef44de2bf5ce8db463e4ce56a739162a7a0 | |
parent | 9e5420ee9df14ff7341a2b760ac20ff823e2afd4 (diff) | |
download | gsoc2013-evolution-b05a2b14c8c4609548fa286807dd3371c9302d1e.tar gsoc2013-evolution-b05a2b14c8c4609548fa286807dd3371c9302d1e.tar.gz gsoc2013-evolution-b05a2b14c8c4609548fa286807dd3371c9302d1e.tar.bz2 gsoc2013-evolution-b05a2b14c8c4609548fa286807dd3371c9302d1e.tar.lz gsoc2013-evolution-b05a2b14c8c4609548fa286807dd3371c9302d1e.tar.xz gsoc2013-evolution-b05a2b14c8c4609548fa286807dd3371c9302d1e.tar.zst gsoc2013-evolution-b05a2b14c8c4609548fa286807dd3371c9302d1e.zip |
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
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-config-gui.c | 2 |
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, |