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/pango-tabs.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/pango-tabs.c')
-rw-r--r-- | pango/pango-tabs.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pango/pango-tabs.c b/pango/pango-tabs.c index 4dc9a319..7917a58b 100644 --- a/pango/pango-tabs.c +++ b/pango/pango-tabs.c @@ -159,10 +159,8 @@ pango_tab_array_get_type (void) if (our_type == 0) our_type = g_boxed_type_register_static ("PangoTabArray", - NULL, (GBoxedCopyFunc)pango_tab_array_copy, - (GBoxedFreeFunc)pango_tab_array_free, - FALSE); + (GBoxedFreeFunc)pango_tab_array_free); return our_type; } |