diff options
author | Not Zed <NotZed@Ximian.com> | 2003-03-10 16:17:05 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2003-03-10 16:17:05 +0800 |
commit | c8a1141a55840d16dca6fc863d8fbab7d0b4ab26 (patch) | |
tree | d7f6bad72c9a53bfb25cfff703bcee5c5a1c0a64 /mail/mail-vfolder.c | |
parent | d51c9927e53206f889dba63274fd425efe65db5a (diff) | |
download | gsoc2013-evolution-c8a1141a55840d16dca6fc863d8fbab7d0b4ab26.tar.gz gsoc2013-evolution-c8a1141a55840d16dca6fc863d8fbab7d0b4ab26.tar.zst gsoc2013-evolution-c8a1141a55840d16dca6fc863d8fbab7d0b4ab26.zip |
Fix the response code, because some bastard changed the filter/* code and
2003-03-11 Not Zed <NotZed@Ximian.com>
* mail-vfolder.c (vfolder_editor_response): Fix the response code,
because some bastard changed the filter/* code and didn't fix the
callers. Partial fix for #39165.
svn path=/trunk/; revision=20231
Diffstat (limited to 'mail/mail-vfolder.c')
-rw-r--r-- | mail/mail-vfolder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-vfolder.c b/mail/mail-vfolder.c index 83f155d359..c4ad36c8ed 100644 --- a/mail/mail-vfolder.c +++ b/mail/mail-vfolder.c @@ -811,7 +811,7 @@ vfolder_editor_response (GtkWidget *dialog, int button, void *data) sprintf(user, "%s/vfolders.xml", evolution_dir); switch(button) { - case GTK_RESPONSE_OK: + case GTK_RESPONSE_ACCEPT: rule_context_save((RuleContext *)context, user); break; default: |