diff options
author | Tim Janik <timj@gtk.org> | 2001-02-04 07:04:06 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2001-02-04 07:04:06 +0000 |
commit | eb23f124cfc4b476b1ace5550513b453ad924e7b (patch) | |
tree | e8cc5b0dfcd57567a62a1d06f88ff776be4a4973 /pango/pango-attributes.c | |
parent | 2246697fe6b423b8837dcf49e237db8ade8ea2ff (diff) | |
download | pango-eb23f124cfc4b476b1ace5550513b453ad924e7b.tar.gz |
pass 0 as first argument to g_type_init().
Sun Feb 4 07:48:47 2001 Tim Janik <timj@gtk.org>
* pango/pango-attributes.c (pango_color_get_type): pass 0 as
first argument to g_type_init().
* pango/pangoxft-fontmap.c (pango_xft_get_font_map):
* pango/pangowin32-fontmap.c (pango_win32_font_map_for_display):
* pango/pangoft2-fontmap.c (pango_ft2_font_map_for_display):
* pango/pangox-fontmap.c (pango_x_font_map_for_display):
* pango/pango-context.c (pango_context_new): likewise.
* i dare saying that i doubt the usefullness of all these
g_type_init() calls though.
Diffstat (limited to 'pango/pango-attributes.c')
-rw-r--r-- | pango/pango-attributes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pango-attributes.c b/pango/pango-attributes.c index cc72fc30..9b958672 100644 --- a/pango/pango-attributes.c +++ b/pango/pango-attributes.c @@ -1484,7 +1484,7 @@ pango_color_get_type (void) if (our_type == 0) { - g_type_init (); + g_type_init (0); our_type = g_boxed_type_register_static ("PangoColor", pango_color_copy, |