diff options
author | Alex Larsson <alexl@redhat.com> | 2001-09-10 16:50:43 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2001-09-10 16:50:43 +0000 |
commit | fdf4784610942390b5465a245434c5d699aa8728 (patch) | |
tree | c0623566e54257fb4292afd0fd0537f48ed07399 /pango/glyphstring.c | |
parent | af319ff03e4aedf7bf9466d4ddd6bed52f7cda4d (diff) | |
download | pango-fdf4784610942390b5465a245434c5d699aa8728.tar.gz |
Update to the new g_boxed_type_register_static API.
2001-09-10 Alex Larsson <alexl@redhat.com>
* pango/fonts.c:
* pango/glyphstring.c:
* pango/pango-attributes.c:
* pango/pango-color.c:
* pango/pango-tabs.c:
* pango/pango-utils.c:
Update to the new g_boxed_type_register_static API.
Diffstat (limited to 'pango/glyphstring.c')
-rw-r--r-- | pango/glyphstring.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pango/glyphstring.c b/pango/glyphstring.c index feaefe2e..26b67dd7 100644 --- a/pango/glyphstring.c +++ b/pango/glyphstring.c @@ -78,10 +78,8 @@ pango_glyph_string_get_type (void) if (our_type == 0) our_type = g_boxed_type_register_static ("PangoGlyphString", - NULL, (GBoxedCopyFunc)pango_glyph_string_copy, - (GBoxedFreeFunc)pango_glyph_string_free, - FALSE); + (GBoxedFreeFunc)pango_glyph_string_free); return our_type; } |