aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-vfolder-editor.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-06-18 16:57:50 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-06-18 16:57:50 +0800
commitaf2b5dd152cd54daaf21533b98a704744cbc9265 (patch)
treea2dc371b03002de04097e6b364085168bd050a25 /mail/em-vfolder-editor.c
parent9eec91e7be4cd60778e3e624ab60d17721d4050a (diff)
downloadgsoc2013-evolution-af2b5dd152cd54daaf21533b98a704744cbc9265.tar
gsoc2013-evolution-af2b5dd152cd54daaf21533b98a704744cbc9265.tar.gz
gsoc2013-evolution-af2b5dd152cd54daaf21533b98a704744cbc9265.tar.bz2
gsoc2013-evolution-af2b5dd152cd54daaf21533b98a704744cbc9265.tar.lz
gsoc2013-evolution-af2b5dd152cd54daaf21533b98a704744cbc9265.tar.xz
gsoc2013-evolution-af2b5dd152cd54daaf21533b98a704744cbc9265.tar.zst
gsoc2013-evolution-af2b5dd152cd54daaf21533b98a704744cbc9265.zip
** See #31027.
2004-06-18 Not Zed <NotZed@Ximian.com> ** See #31027. * em-vfolder-editor.c (em_vfolder_editor_new): make sure we construct the rule editor with a source of 'incoming', otherwise newly created rules have no source in the current session. * em-vfolder-rule.c (em_vfolder_rule_init): init the vfolder source to 'incoming' always. * mail-vfolder.c (uri_is_ignore): fix debug statement. svn path=/trunk/; revision=26415
Diffstat (limited to 'mail/em-vfolder-editor.c')
-rw-r--r--mail/em-vfolder-editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-vfolder-editor.c b/mail/em-vfolder-editor.c
index 3974790223..3e7aa3e282 100644
--- a/mail/em-vfolder-editor.c
+++ b/mail/em-vfolder-editor.c
@@ -101,7 +101,7 @@ em_vfolder_editor_new (EMVFolderContext *vc)
GladeXML *gui;
gui = glade_xml_new (EVOLUTION_GLADEDIR "/filter.glade", "rule_editor", NULL);
- rule_editor_construct ((RuleEditor *) ve, (RuleContext *) vc, gui, NULL, _("Virtual _Folders"));
+ rule_editor_construct ((RuleEditor *) ve, (RuleContext *) vc, gui, "incoming", _("Virtual _Folders"));
gtk_widget_hide(glade_xml_get_widget (gui, "filter_source"));
g_object_unref (gui);