diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2019-08-02 11:12:15 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2019-08-02 11:12:15 +0100 |
commit | bd6dcbcc2b6103b1102c84e219034ba55ec80fe5 (patch) | |
tree | c3711e48152631f8b5af09d9fc450ae58e5a5f40 /pango/pango-script.h | |
parent | 2bd9b3d7e44d9fc9985f46542824e378144bcb89 (diff) | |
download | pango-bd6dcbcc2b6103b1102c84e219034ba55ec80fe5.tar.gz |
Add a boxed type for PangoScriptIter
Makes it usable by language bindings, and avoids a warning when
introspecting the source code.
Diffstat (limited to 'pango/pango-script.h')
-rw-r--r-- | pango/pango-script.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pango/pango-script.h b/pango/pango-script.h index a5c2b497..a7ec3246 100644 --- a/pango/pango-script.h +++ b/pango/pango-script.h @@ -22,7 +22,7 @@ #ifndef __PANGO_SCRIPT_H__ #define __PANGO_SCRIPT_H__ -#include <glib.h> +#include <glib-object.h> G_BEGIN_DECLS @@ -309,6 +309,9 @@ typedef enum { /* ISO 15924 code */ PANGO_DEPRECATED_IN_1_44_FOR(g_unichar_get_script) PangoScript pango_script_for_unichar (gunichar ch) G_GNUC_CONST; +PANGO_AVAILABLE_IN_1_44 +GType pango_script_iter_get_type (void) G_GNUC_CONST; + PANGO_AVAILABLE_IN_1_4 PangoScriptIter *pango_script_iter_new (const char *text, int length); |