diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2008-12-26 05:09:48 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2008-12-26 05:09:48 +0000 |
commit | 056aa0ca3f32ef8963e05bcf4afb70d0a3b28788 (patch) | |
tree | 71cfe518d74bc2481d65b8cf65ed6f5bee40b700 /modules/basic | |
parent | 635d8e7adde95bfab42aec70f2f01c647b9587b1 (diff) | |
download | pango-056aa0ca3f32ef8963e05bcf4afb70d0a3b28788.tar.gz |
Fix all warnings in modules/.
2008-12-25 Behdad Esfahbod <behdad@gnome.org>
* modules/arabic/arabic-fc.c (arabic_engine_shape):
* modules/arabic/arabic-lang.c (arabic_engine_break):
* modules/basic/basic-fc.c (basic_engine_shape):
* modules/basic/basic-x.c (find_char), (conv_8bit), (conv_eucjp),
(conv_16bit), (conv_16bit_MSB_on), (conv_gb18030_1), (conv_euctw),
(conv_ucs4), (basic_engine_shape), (basic_engine_covers):
* modules/hangul/hangul-fc.c (hangul_engine_shape):
* modules/hebrew/hebrew-fc.c (add_cluster), (fallback_shape):
* modules/indic/indic-lang.c (indic_engine_break):
* modules/khmer/khmer-fc.c (khmer_engine_shape):
* modules/syriac/syriac-fc.c (syriac_engine_shape):
* modules/thai/thai-fc.c (get_glyph_index_tis),
(thai_engine_shape), (thai_make_unknown_glyph):
* modules/thai/thai-lang.c (thai_engine_break):
* modules/thai/thai-shaper.c (get_glyphs_list):
* modules/tibetan/tibetan-fc.c (tibetan_engine_shape):
Fix all warnings in modules/.
svn path=/trunk/; revision=2771
Diffstat (limited to 'modules/basic')
-rw-r--r-- | modules/basic/basic-fc.c | 2 | ||||
-rw-r--r-- | modules/basic/basic-x.c | 22 |
2 files changed, 12 insertions, 12 deletions
diff --git a/modules/basic/basic-fc.c b/modules/basic/basic-fc.c index 50d01071..6e0d2ef2 100644 --- a/modules/basic/basic-fc.c +++ b/modules/basic/basic-fc.c @@ -120,7 +120,7 @@ static const PangoOTFeatureMap vertical_gpos_features[] = }; static void -basic_engine_shape (PangoEngineShape *engine, +basic_engine_shape (PangoEngineShape *engine G_GNUC_UNUSED, PangoFont *font, const char *text, gint length, diff --git a/modules/basic/basic-x.c b/modules/basic/basic-x.c index 436967ab..ba4effc9 100644 --- a/modules/basic/basic-x.c +++ b/modules/basic/basic-x.c @@ -239,7 +239,7 @@ find_char (CharCache *cache, PangoFont *font, gunichar wc, const char *input) } } - mask_table->n_subfonts = pango_x_list_subfonts (font, (char**)charset_names, n_charsets, &mask_table->subfonts, &subfont_charsets); + mask_table->n_subfonts = pango_x_list_subfonts (font, (char**)(void*)charset_names, n_charsets, &mask_table->subfonts, &subfont_charsets); mask_table->charsets = g_new (Charset *, mask_table->n_subfonts); for (i=0; i<mask_table->n_subfonts; i++) @@ -302,7 +302,7 @@ set_glyph (PangoFont *font, PangoGlyphString *glyphs, int i, int offset, PangoGl } static PangoGlyph -conv_8bit (CharCache *cache, +conv_8bit (CharCache *cache G_GNUC_UNUSED, GIConv cd, const char *input) { @@ -321,7 +321,7 @@ conv_8bit (CharCache *cache, } static PangoGlyph -conv_eucjp (CharCache *cache, +conv_eucjp (CharCache *cache G_GNUC_UNUSED, GIConv cd, const char *input) { @@ -347,7 +347,7 @@ conv_eucjp (CharCache *cache, } static PangoGlyph -conv_16bit (CharCache *cache, +conv_16bit (CharCache *cache G_GNUC_UNUSED, GIConv cd, const char *input) { @@ -369,7 +369,7 @@ conv_16bit (CharCache *cache, } static PangoGlyph -conv_16bit_MSB_on (CharCache *cache, +conv_16bit_MSB_on (CharCache *cache G_GNUC_UNUSED, GIConv cd, const char *input) { @@ -391,7 +391,7 @@ conv_16bit_MSB_on (CharCache *cache, } static PangoGlyph -conv_gb18030_1 (CharCache *cache, +conv_gb18030_1 (CharCache *cache G_GNUC_UNUSED, GIConv cd, const char *input) { @@ -414,7 +414,7 @@ conv_gb18030_1 (CharCache *cache, } static PangoGlyph -conv_euctw (CharCache *cache, +conv_euctw (CharCache *cache G_GNUC_UNUSED, GIConv cd, const char *input) { @@ -439,8 +439,8 @@ conv_euctw (CharCache *cache, } static PangoGlyph -conv_ucs4 (CharCache *cache, - GIConv cd, +conv_ucs4 (CharCache *cache G_GNUC_UNUSED, + GIConv cd G_GNUC_UNUSED, const char *input) { return g_utf8_get_char (input); @@ -554,7 +554,7 @@ get_char_cache (PangoFont *font, } static void -basic_engine_shape (PangoEngineShape *engine, +basic_engine_shape (PangoEngineShape *engine G_GNUC_UNUSED, PangoFont *font, const char *text, gint length, @@ -668,7 +668,7 @@ basic_engine_shape (PangoEngineShape *engine, } static PangoCoverageLevel -basic_engine_covers (PangoEngineShape *engine, +basic_engine_covers (PangoEngineShape *engine G_GNUC_UNUSED, PangoFont *font, PangoLanguage *lang, gunichar wc) |