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:05:33 +0800 |
commit | 87564151762fb3fdf62fe0a753d8718ad1c0788d (patch) | |
tree | d4ab1f26c467b04a76c54daceaf2b949b1ec1f8a | |
parent | d7bd8d02dd2c2e7b98b0abfb7fa5c7f497e85119 (diff) | |
download | gsoc2013-evolution-87564151762fb3fdf62fe0a753d8718ad1c0788d.tar gsoc2013-evolution-87564151762fb3fdf62fe0a753d8718ad1c0788d.tar.gz gsoc2013-evolution-87564151762fb3fdf62fe0a753d8718ad1c0788d.tar.bz2 gsoc2013-evolution-87564151762fb3fdf62fe0a753d8718ad1c0788d.tar.lz gsoc2013-evolution-87564151762fb3fdf62fe0a753d8718ad1c0788d.tar.xz gsoc2013-evolution-87564151762fb3fdf62fe0a753d8718ad1c0788d.tar.zst gsoc2013-evolution-87564151762fb3fdf62fe0a753d8718ad1c0788d.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 8d720742c6..512938c711 100644 --- a/mail/em-filter-editor.c +++ b/mail/em-filter-editor.c @@ -142,7 +142,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); |