diff options
author | Owen Taylor <otaylor@redhat.com> | 2003-08-14 14:42:06 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2003-08-14 14:42:06 +0000 |
commit | e8797c8fc739232838152a594442f0d486ca9cbd (patch) | |
tree | 09dbe4c117b085fb6be8b56de2e5e111742ccefe /pango/modules.c | |
parent | fe3d6ea5f402b6d3b828823dd42efe7cbcb9ff78 (diff) | |
download | pango-e8797c8fc739232838152a594442f0d486ca9cbd.tar.gz |
Call g_type_init() (#119830, Noah Levitt)
Thu Aug 14 10:41:21 2003 Owen Taylor <otaylor@redhat.com>
* pango/modules.c (init_modules): Call g_type_init()
(#119830, Noah Levitt)
Diffstat (limited to 'pango/modules.c')
-rw-r--r-- | pango/modules.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pango/modules.c b/pango/modules.c index afbe1169..d96f89fe 100644 --- a/pango/modules.c +++ b/pango/modules.c @@ -515,6 +515,9 @@ init_modules (void) else init = TRUE; + /* Make sure that the type system is initialized */ + g_type_init (); + read_modules (); } |