aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchenthill@novell.com>2009-09-10 17:00:25 +0800
committerChenthill Palanisamy <pchenthill@novell.com>2009-09-10 17:04:09 +0800
commit769f0ac676b31c9ff0f1fa9736e49efae8f67f65 (patch)
treeb2bedb72cf10cd2cbc2da25e46a3a0356e956dd3 /mail
parentbe0866046991959edbe4c45e9e4d16d3c0e3532c (diff)
downloadgsoc2013-evolution-769f0ac676b31c9ff0f1fa9736e49efae8f67f65.tar
gsoc2013-evolution-769f0ac676b31c9ff0f1fa9736e49efae8f67f65.tar.gz
gsoc2013-evolution-769f0ac676b31c9ff0f1fa9736e49efae8f67f65.tar.bz2
gsoc2013-evolution-769f0ac676b31c9ff0f1fa9736e49efae8f67f65.tar.lz
gsoc2013-evolution-769f0ac676b31c9ff0f1fa9736e49efae8f67f65.tar.xz
gsoc2013-evolution-769f0ac676b31c9ff0f1fa9736e49efae8f67f65.tar.zst
gsoc2013-evolution-769f0ac676b31c9ff0f1fa9736e49efae8f67f65.zip
Bug #594628 - Switching back from Outgoing filters to Incoming filters does not
show existing incoming filters
Diffstat (limited to 'mail')
-rw-r--r--mail/em-filter-editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-filter-editor.c b/mail/em-filter-editor.c
index b782ca8cbf..f4271bf6e0 100644
--- a/mail/em-filter-editor.c
+++ b/mail/em-filter-editor.c
@@ -155,7 +155,7 @@ select_source (GtkComboBox *combobox, EMFilterEditor *fe)
g_return_if_fail (idx >= 0 && idx < g_slist_length (sources));
- source = (gchar *)g_slist_nth (sources, idx);
+ source = (gchar *) (g_slist_nth (sources, idx))->data;
g_return_if_fail (source);
rule_editor_set_source ((RuleEditor *)fe, source);