diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2019-08-02 11:22:12 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2019-08-02 11:22:12 +0100 |
commit | 7c744bb8a71df1edc0c9751f41bd86ac994ddab5 (patch) | |
tree | a26e11e3a767965ed912a29651866fccc57a8982 /pango/modules.c | |
parent | f5cd8b93e0f3b463ba4f660cce2db86dfef0a165 (diff) | |
download | pango-7c744bb8a71df1edc0c9751f41bd86ac994ddab5.tar.gz |
Skip some deprecated symbols
These symbols are generating warnings because of missing type
information, but since they are deprecated we can just skip them.
Diffstat (limited to 'pango/modules.c')
-rw-r--r-- | pango/modules.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pango/modules.c b/pango/modules.c index 25481bbd..54f9db8f 100644 --- a/pango/modules.c +++ b/pango/modules.c @@ -37,14 +37,14 @@ #include "pango-modules.h" /** - * pango_find_map: + * pango_find_map: (skip) * @language: the language tag for which to find the map * @engine_type_id: the engine type for the map to find * @render_type_id: the render type for the map to find * * Do not use. Does not do anything. * - * Return value: %NULL. + * Return value: (transfer none) (nullable): %NULL. * * Deprecated: 1.38 **/ @@ -63,7 +63,7 @@ pango_find_map (PangoLanguage *language G_GNUC_UNUSED, * * Do not use. Does not do anything. * - * Return value: %NULL. + * Return value: (transfer none) (nullable): %NULL. * * Deprecated: 1.38 **/ @@ -78,10 +78,10 @@ pango_map_get_engine (PangoMap *map G_GNUC_UNUSED, * pango_map_get_engines: (skip) * @map: a #PangoMap * @script: a #PangoScript - * @exact_engines: location to store list of engines that exactly - * handle this script. - * @fallback_engines: location to store list of engines that approximately + * @exact_engines: (nullable): location to store list of engines that exactly * handle this script. + * @fallback_engines: (nullable): location to store list of engines that + * approximately handle this script. * * Do not use. Does not do anything. * @@ -101,7 +101,7 @@ pango_map_get_engines (PangoMap *map G_GNUC_UNUSED, } /** - * pango_module_register: + * pango_module_register: (skip) * @module: a #PangoIncludedModule * * Do not use. Does not do anything. |