[grilo] core: Fix reference to renamed functions



commit 4e576eec6bc8c1d8a5a366ca371abf3989a116f8
Author: Bastien Nocera <hadess hadess net>
Date:   Mon May 12 13:11:38 2014 +0200

    core: Fix reference to renamed functions
    
    GrlMetadataSource doesn't exist any more.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=730003

 src/grl-caps.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/grl-caps.c b/src/grl-caps.c
index b57643f..19d3ad3 100644
--- a/src/grl-caps.c
+++ b/src/grl-caps.c
@@ -24,15 +24,15 @@
  * SECTION:grl-caps
  * @short_description: Describes the capabilities of a source for a given
  * operation.
- * @see_also: #GrlOperationOptions, grl_metadata_source_get_caps()
+ * @see_also: #GrlOperationOptions, grl_source_get_caps()
  *
  * A #GrlCaps instance is here to help you know if a given set of operation
  * options is supported for a given operation.
  *
  * Here is an example of how this would be used.
  * |[
- * GrlCaps *caps = grl_metadata_source_get_caps (GRL_METADATA_SOURCE (my_source),
- *                                               GRL_OP_SEARCH);
+ * GrlCaps *caps = grl_source_get_caps (GRL_SOURCE (my_source),
+ *                                      GRL_OP_SEARCH);
  * GrlOperationOptions *supported_options;
  * if (grl_operation_options_obey_caps (my_options, caps, &supported_options, NULL))
  *   grl_media_source_search (my_source, "blah", interesting_keys, my_options, ...);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]