diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-06-14 11:22:14 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-06-14 11:22:14 +0800 |
commit | 9a704804343436d9d6b7d06b05a1cda583202048 (patch) | |
tree | d818433a5388e432af653d2b96f1239c505b9564 | |
parent | eaa86c334aa83a35019bc3447d43575ea4662170 (diff) | |
download | gsoc2013-evolution-9a704804343436d9d6b7d06b05a1cda583202048.tar gsoc2013-evolution-9a704804343436d9d6b7d06b05a1cda583202048.tar.gz gsoc2013-evolution-9a704804343436d9d6b7d06b05a1cda583202048.tar.bz2 gsoc2013-evolution-9a704804343436d9d6b7d06b05a1cda583202048.tar.lz gsoc2013-evolution-9a704804343436d9d6b7d06b05a1cda583202048.tar.xz gsoc2013-evolution-9a704804343436d9d6b7d06b05a1cda583202048.tar.zst gsoc2013-evolution-9a704804343436d9d6b7d06b05a1cda583202048.zip |
fixed it so that source always pointed to a value
svn path=/trunk/; revision=3554
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-config.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index af315d8c1c..3664020d6f 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2000-06-13 Jeffrey Stedfast <fejj@helixcode.com> + + * mail-config.c (on_SourceConfigDialogButton_clicked): Make sure source + is always pointing to something, so a blank is not written to the config file + on close. + 2000-06-13 Ettore Perazzoli <ettore@helixcode.com> * Makefile.am (SHELL_OBJS): Removed. diff --git a/mail/mail-config.c b/mail/mail-config.c index f8815e0ed3..3f7ebf7a99 100644 --- a/mail/mail-config.c +++ b/mail/mail-config.c @@ -1390,6 +1390,7 @@ on_SourceConfigDialogButton_clicked (GnomeDialog *dialog, int button, gpointer u gtk_clist_set_text (GTK_CLIST (data->clist), source_row, 0, data->source); gtk_clist_set_row_data (GTK_CLIST (data->clist), source_row, g_strdup (data->source)); + source = data->source; break; case 1: /* Cancel clicked */ g_print ("Cancel clicked\n"); |