From 1e6e797d6579d447c154a6dee961a8d4428051b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 22 Mar 2013 20:02:57 +0000 Subject: [PATCH] docs: fix typo in query function example in Plugin Writer's Guide https://bugzilla.gnome.org/show_bug.cgi?id=696142 --- docs/pwg/building-queryfn.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/pwg/building-queryfn.xml b/docs/pwg/building-queryfn.xml index ad2e943a33..2f8816318a 100644 --- a/docs/pwg/building-queryfn.xml +++ b/docs/pwg/building-queryfn.xml @@ -28,8 +28,8 @@ gst_my_filter_init (GstMyFilter * filter) [..] /* configure event function on the pad before adding * the pad to the element */ - gst_pad_set_event_function (filter->srcpad, - gst_my_filter_src_event); + gst_pad_set_query_function (filter->srcpad, + gst_my_filter_src_query); [..] }