diff options
author | Owen Taylor <otaylor@redhat.com> | 2003-08-22 22:52:08 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2003-08-22 22:52:08 +0000 |
commit | c9f014f6478e48efd4427efa0f1d1f37a2c3563b (patch) | |
tree | 0eb952ac056c945715ecd08e446db3db566cb510 /pango/modules.c | |
parent | b9b68dba2e563f320b7c4b3ea73c68bfa1d9a804 (diff) | |
download | pango-c9f014f6478e48efd4427efa0f1d1f37a2c3563b.tar.gz |
Add some macro definitions for gcc-3.3 that suppress the bogus
Fri Aug 22 18:09:52 2003 Owen Taylor <otaylor@redhat.com>
* pango/opentype/fterrcompat.h: Add some macro definitions
for gcc-3.3 that suppress the bogus strict-aliasing
warnings.
* pango/pango-utils.c (read_config_file): Use
g_hash_table_new_full() to simplify code and fix
gcc-3.3 warnings.
* pango/pangox-fontmap.c (pango_x_real_get_coverage_win)
* pango/querymodules.c (query_module): Suppress gcc-3.3
warnings.
* pango/modules.c (pango_find_map): Fix warning from
missing declaration of pango_module_get_type().
* pango/pango-context.c/pango-engine.c: Fix name confusion
for pango_get_fallback_shaper().
Diffstat (limited to 'pango/modules.c')
-rw-r--r-- | pango/modules.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pango/modules.c b/pango/modules.c index d96f89fe..84cffff5 100644 --- a/pango/modules.c +++ b/pango/modules.c @@ -100,6 +100,8 @@ GObjectClass *parent_class; static void build_map (PangoMapInfo *info); static void init_modules (void); +static GType pango_module_get_type (void); + /** * pango_find_map: * @language: the language tag for which to find the map |