diff options
author | Christian Persch <chpe@gnome.org> | 2008-05-24 16:22:06 +0200 |
---|---|---|
committer | Christian Persch <chpe@gnome.org> | 2010-11-04 22:28:46 +0100 |
commit | 807c776bf36667c697c0c9bd76d37160e9c1d8cc (patch) | |
tree | eab1a7fbafb2476e53c5148d7f786febe143da1f /pango/glyphstring.c | |
parent | c06264ae25218dd72a70bf5eb93d552f2763f9aa (diff) | |
download | pango-807c776bf36667c697c0c9bd76d37160e9c1d8cc.tar.gz |
Use G_DEFINE_BOXED_TYPE.
Bug #539622.
Diffstat (limited to 'pango/glyphstring.c')
-rw-r--r-- | pango/glyphstring.c | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/pango/glyphstring.c b/pango/glyphstring.c index dedd822c..e407bd6a 100644 --- a/pango/glyphstring.c +++ b/pango/glyphstring.c @@ -91,18 +91,9 @@ pango_glyph_string_set_size (PangoGlyphString *string, gint new_len) string->num_glyphs = new_len; } -GType -pango_glyph_string_get_type (void) -{ - static GType our_type = 0; - - if (G_UNLIKELY (our_type == 0)) - our_type = g_boxed_type_register_static (I_("PangoGlyphString"), - (GBoxedCopyFunc)pango_glyph_string_copy, - (GBoxedFreeFunc)pango_glyph_string_free); - - return our_type; -} +G_DEFINE_BOXED_TYPE (PangoGlyphString, pango_glyph_string, + pango_glyph_string_copy, + pango_glyph_string_free); /** * pango_glyph_string_copy: |