diff options
Diffstat (limited to 'pango/pango-item.c')
-rw-r--r-- | pango/pango-item.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pango/pango-item.c b/pango/pango-item.c index c1857a1e..a8b5aae0 100644 --- a/pango/pango-item.c +++ b/pango/pango-item.c @@ -93,6 +93,18 @@ pango_item_free (PangoItem *item) g_free (item); } +GType +pango_item_get_type (void) +{ + static GType our_type = 0; + + if (our_type == 0) + our_type = g_boxed_type_register_static ("PangoItem", + (GBoxedCopyFunc) pango_item_copy, + (GBoxedFreeFunc) pango_item_free); + return our_type; +} + /** * pango_item_split: * @orig: a #PangoItem |