diff options
author | Evan Nemerson <evan@nemerson.com> | 2014-05-30 19:21:11 -0700 |
---|---|---|
committer | Evan Nemerson <evan@nemerson.com> | 2014-10-16 13:09:34 -0700 |
commit | fa6ded9b0d065634481d8ae4126fdea0b88e3558 (patch) | |
tree | 151efb6762bf467ada2ac104770fdefd293b7248 /pango/pango-engine.h | |
parent | adb5a4e86b09b0935ec1dd71bf05ac41807c84a2 (diff) | |
download | pango-fa6ded9b0d065634481d8ae4126fdea0b88e3558.tar.gz |
Add many missing nullability annotations.
https://bugzilla.gnome.org/show_bug.cgi?id=731022
Diffstat (limited to 'pango/pango-engine.h')
-rw-r--r-- | pango/pango-engine.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/pango/pango-engine.h b/pango/pango-engine.h index 0b8abbe3..dc146c00 100644 --- a/pango/pango-engine.h +++ b/pango/pango-engine.h @@ -114,12 +114,12 @@ struct _PangoEngineLang /** * PangoEngineLangClass: - * @script_break: Provides a custom implementation of pango_break(). - * If %NULL, pango_default_break() is used instead. If not %NULL, for - * Pango versions before 1.16 (module interface version before 1.6.0), - * this was called instead of pango_default_break(), but in newer versions, - * pango_default_break() is always called and this is called after that to - * allow tailoring the breaking results. + * @script_break: (nullable): Provides a custom implementation of + * pango_break(). If %NULL, pango_default_break() is used instead. If + * not %NULL, for Pango versions before 1.16 (module interface version + * before 1.6.0), this was called instead of pango_default_break(), + * but in newer versions, pango_default_break() is always called and + * this is called after that to allow tailoring the breaking results. * * Class structure for #PangoEngineLang **/ @@ -347,8 +347,8 @@ prefix ## _register_type (GTypeModule *module) \ * PANGO_ENGINE_LANG_DEFINE_TYPE: * @name: Name of the the type to register (for example:, <literal>ArabicEngineFc</literal> * @prefix: Prefix for symbols that will be defined (for example:, <literal>arabic_engine_fc</literal> - * @class_init: Class initialization function for the new type, or %NULL - * @instance_init: Instance initialization function for the new type, or %NULL + * @class_init: (nullable): Class initialization function for the new type, or %NULL + * @instance_init: (nullable): Instance initialization function for the new type, or %NULL * * Outputs the necessary code for GObject type registration for a * #PangoEngineLang class defined in a module. Two static symbols @@ -377,8 +377,8 @@ prefix ## _register_type (GTypeModule *module) \ * PANGO_ENGINE_SHAPE_DEFINE_TYPE: * @name: Name of the the type to register (for example:, <literal>ArabicEngineFc</literal> * @prefix: Prefix for symbols that will be defined (for example:, <literal>arabic_engine_fc</literal> - * @class_init: Class initialization function for the new type, or %NULL - * @instance_init: Instance initialization function for the new type, or %NULL + * @class_init: (nullable): Class initialization function for the new type, or %NULL + * @instance_init: (nullable): Instance initialization function for the new type, or %NULL * * Outputs the necessary code for GObject type registration for a * #PangoEngineShape class defined in a module. Two static symbols |