diff options
author | Chenthill Palanisamy <pchenthill@novell.com> | 2009-09-10 17:00:25 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchenthill@novell.com> | 2009-09-10 17:04:09 +0800 |
commit | 769f0ac676b31c9ff0f1fa9736e49efae8f67f65 (patch) | |
tree | b2bedb72cf10cd2cbc2da25e46a3a0356e956dd3 | |
parent | be0866046991959edbe4c45e9e4d16d3c0e3532c (diff) | |
download | gsoc2013-evolution-769f0ac676b31c9ff0f1fa9736e49efae8f67f65.tar.gz 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
-rw-r--r-- | mail/em-filter-editor.c | 2 |
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); |