aboutsummaryrefslogtreecommitdiff
path: root/src/summaryview.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-05 07:54:55 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-05 07:54:55 +0000
commit11776e5a524745b01ac145439ac2892a29bd0826 (patch)
tree233db0a019b3b533581f611edb9802a80d664279 /src/summaryview.c
parent51f886e4c8b44242b10c057a1af70f66f28bb2e6 (diff)
moved procmsg.c::procmsg_get_filter_keyword() to filter.c::filter_get_keyword_from_msg().
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@547 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/summaryview.c')
-rw-r--r--src/summaryview.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/summaryview.c b/src/summaryview.c
index 6e83b6fe..da018bb9 100644
--- a/src/summaryview.c
+++ b/src/summaryview.c
@@ -3752,7 +3752,7 @@ void summary_filter_junk(SummaryView *summaryview, gboolean selected_only)
selected_only);
}
-void summary_filter_open(SummaryView *summaryview, PrefsFilterType type)
+void summary_filter_open(SummaryView *summaryview, FilterCreateType type)
{
GtkTreeIter iter;
MsgInfo *msginfo = NULL;
@@ -3768,7 +3768,7 @@ void summary_filter_open(SummaryView *summaryview, PrefsFilterType type)
GET_MSG_INFO(msginfo, &iter);
if (!msginfo) return;
- procmsg_get_filter_keyword(msginfo, &header, &key, type);
+ filter_get_keyword_from_msg(msginfo, &header, &key, type);
prefs_filter_open(msginfo, header);
g_free(header);