diff options
author | Not Zed <NotZed@Ximian.com> | 2004-01-09 14:07:49 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-01-09 14:07:49 +0800 |
commit | efa0b9c96b5b3283dae60c8045ada5a89f817f4f (patch) | |
tree | d5a65a83d3512fa9e065af747014a8f7b7ccd498 /mail/em-utils.c | |
parent | f13d5385ffa7ed71f9c641cc2d160a9653dd62f4 (diff) | |
download | gsoc2013-evolution-efa0b9c96b5b3283dae60c8045ada5a89f817f4f.tar.gz gsoc2013-evolution-efa0b9c96b5b3283dae60c8045ada5a89f817f4f.tar.zst gsoc2013-evolution-efa0b9c96b5b3283dae60c8045ada5a89f817f4f.zip |
add total + unread counts to properties page.
2004-01-09 Not Zed <NotZed@Ximian.com>
* em-folder-tree.c (emft_popup_properties_got_folder): add total +
unread counts to properties page.
* em-utils.c (filter_editor_response):
* mail-vfolder.c (vfolder_editor_response): change for rule editor
changes, ACCEPT->OK.
svn path=/trunk/; revision=24125
Diffstat (limited to 'mail/em-utils.c')
-rw-r--r-- | mail/em-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-utils.c b/mail/em-utils.c index 4e93f2801c..c942af0036 100644 --- a/mail/em-utils.c +++ b/mail/em-utils.c @@ -225,7 +225,7 @@ filter_editor_response (GtkWidget *dialog, int button, gpointer user_data) { FilterContext *fc; - if (button == GTK_RESPONSE_ACCEPT) { + if (button == GTK_RESPONSE_OK) { char *user; fc = g_object_get_data ((GObject *) dialog, "context"); |