diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-04-11 08:31:44 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-04-11 08:31:44 +0000 |
commit | 2fc8c1c04664645ed397c034ee532c41d0f3941e (patch) | |
tree | 0aa9bbb653bbfc1eb68bfad4971c169fb6a7b216 /modules | |
parent | 834d6435a8c91dcbebc7665b84811725a74f8b54 (diff) | |
download | pango-2fc8c1c04664645ed397c034ee532c41d0f3941e.tar.gz |
Bug 337924 – cleanups for issues reported by various compilers Patch
2006-04-11 Behdad Esfahbod <behdad@gnome.org>
Bug 337924 – cleanups for issues reported by various compilers
Patch from Kjartan Maraas.
* examples/viewer-x.c (update):
* modules/arabic/arabic-fc.c (fallback_shape),
(arabic_engine_shape):
* modules/basic/basic-fc.c (fallback_shape), (basic_engine_shape):
* modules/basic/basic-x.c:
* modules/hangul/hangul-fc.c:
* modules/hebrew/hebrew-fc.c (hebrew_engine_shape):
* modules/indic/indic-fc.c:
* modules/khmer/khmer-fc.c:
* modules/syriac/syriac-fc.c:
* modules/thai/thai-fc.c:
* modules/tibetan/tibetan-fc.c:
* pango/break.c:
* pango/modules.c:
* pango/opentype/ftglue.c (_hb_ftglue_face_goto_table):
* pango/pango-attributes.c (pango_attr_list_filter):
* pango/pango-engine.c:
* pango/pango-fontset.c:
* pango/pango-layout.c (pango_layout_set_text),
(pango_layout_xy_to_index), (pango_layout_get_cursor_pos):
* pango/pango-markup.c (text_handler):
* pango/pango-utils.c (read_alias_file):
* pango/pangocairo-fcfont.c (G_DEFINE_TYPE_WITH_CODE):
* pango/pangocairo-fcfontmap.c (G_DEFINE_TYPE_WITH_CODE):
* pango/pangocairo-font.c (_pango_cairo_font_get_hex_box_info):
* pango/pangox-fontmap.c (pango_x_make_matching_xlfd):
* tests/dump-boundaries.c (fail):
Remove unused variables. Remove excess semicolon after DEFINE_TYPE
macros.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/arabic/arabic-fc.c | 8 | ||||
-rw-r--r-- | modules/basic/basic-fc.c | 8 | ||||
-rw-r--r-- | modules/basic/basic-x.c | 2 | ||||
-rw-r--r-- | modules/hangul/hangul-fc.c | 2 | ||||
-rw-r--r-- | modules/hebrew/hebrew-fc.c | 5 | ||||
-rw-r--r-- | modules/indic/indic-fc.c | 2 | ||||
-rw-r--r-- | modules/khmer/khmer-fc.c | 2 | ||||
-rw-r--r-- | modules/syriac/syriac-fc.c | 2 | ||||
-rw-r--r-- | modules/thai/thai-fc.c | 2 | ||||
-rw-r--r-- | modules/tibetan/tibetan-fc.c | 2 |
10 files changed, 10 insertions, 25 deletions
diff --git a/modules/arabic/arabic-fc.c b/modules/arabic/arabic-fc.c index e6fc5ef4..260d1096 100644 --- a/modules/arabic/arabic-fc.c +++ b/modules/arabic/arabic-fc.c @@ -193,18 +193,15 @@ fallback_shape (PangoEngineShape *engine, gunichar mirrored_ch; PangoGlyph index; char buf[6]; - const char *input; wc = g_utf8_get_char (p); - input = p; if (analysis->level % 2) if (pango_get_mirror_char (wc, &mirrored_ch)) { wc = mirrored_ch; g_unichar_to_utf8 (wc, buf); - input = buf; } if (pango_is_zero_width (wc)) @@ -302,18 +299,15 @@ arabic_engine_shape (PangoEngineShape *engine, gunichar mirrored_ch; PangoGlyph index; char buf[6]; - const char *input; wc = g_utf8_get_char (p); - input = p; if (analysis->level % 2) if (pango_get_mirror_char (wc, &mirrored_ch)) { wc = mirrored_ch; g_unichar_to_utf8 (wc, buf); - input = buf; } if (pango_is_zero_width (wc)) /* Zero-width characters */ @@ -370,7 +364,7 @@ arabic_engine_fc_class_init (PangoEngineShapeClass *class) } PANGO_ENGINE_SHAPE_DEFINE_TYPE (ArabicEngineFc, arabic_engine_fc, - arabic_engine_fc_class_init, NULL); + arabic_engine_fc_class_init, NULL) void PANGO_MODULE_ENTRY(init) (GTypeModule *module) diff --git a/modules/basic/basic-fc.c b/modules/basic/basic-fc.c index 626608be..08776f3b 100644 --- a/modules/basic/basic-fc.c +++ b/modules/basic/basic-fc.c @@ -147,18 +147,15 @@ fallback_shape (PangoEngineShape *engine, gunichar mirrored_ch; PangoGlyph index; char buf[6]; - const char *input; wc = g_utf8_get_char (p); - input = p; if (analysis->level % 2) if (pango_get_mirror_char (wc, &mirrored_ch)) { wc = mirrored_ch; g_unichar_to_utf8 (wc, buf); - input = buf; } if (wc == 0xa0) /* non-break-space */ @@ -368,17 +365,14 @@ basic_engine_shape (PangoEngineShape *engine, gunichar mirrored_ch; PangoGlyph index; char buf[6]; - const char *input; wc = g_utf8_get_char (p); - input = p; if (analysis->level % 2) if (pango_get_mirror_char (wc, &mirrored_ch)) { wc = mirrored_ch; g_unichar_to_utf8 (wc, buf); - input = buf; } if (pango_is_zero_width (wc)) /* Zero-width characters */ @@ -425,7 +419,7 @@ basic_engine_fc_class_init (PangoEngineShapeClass *class) } PANGO_ENGINE_SHAPE_DEFINE_TYPE (BasicEngineFc, basic_engine_fc, - basic_engine_fc_class_init, NULL); + basic_engine_fc_class_init, NULL) void PANGO_MODULE_ENTRY(init) (GTypeModule *module) diff --git a/modules/basic/basic-x.c b/modules/basic/basic-x.c index 1f23291c..70455a64 100644 --- a/modules/basic/basic-x.c +++ b/modules/basic/basic-x.c @@ -691,7 +691,7 @@ basic_engine_x_class_init (PangoEngineShapeClass *class) } PANGO_ENGINE_SHAPE_DEFINE_TYPE (BasicEngineX, basic_engine_x, - basic_engine_x_class_init, NULL); + basic_engine_x_class_init, NULL) void PANGO_MODULE_ENTRY(init) (GTypeModule *module) diff --git a/modules/hangul/hangul-fc.c b/modules/hangul/hangul-fc.c index 39e0d5ba..64966648 100644 --- a/modules/hangul/hangul-fc.c +++ b/modules/hangul/hangul-fc.c @@ -397,7 +397,7 @@ hangul_engine_fc_class_init (PangoEngineShapeClass *class) } PANGO_ENGINE_SHAPE_DEFINE_TYPE (HangulEngineFc, hangul_engine_fc, - hangul_engine_fc_class_init, NULL); + hangul_engine_fc_class_init, NULL) void PANGO_MODULE_ENTRY(init) (GTypeModule *module) diff --git a/modules/hebrew/hebrew-fc.c b/modules/hebrew/hebrew-fc.c index af80ed94..da776d5d 100644 --- a/modules/hebrew/hebrew-fc.c +++ b/modules/hebrew/hebrew-fc.c @@ -340,17 +340,14 @@ hebrew_engine_shape (PangoEngineShape *engine, gunichar mirrored_ch; PangoGlyph index; char buf[6]; - const char *input; wc = g_utf8_get_char (p); - input = p; if (analysis->level % 2) if (pango_get_mirror_char (wc, &mirrored_ch)) { wc = mirrored_ch; g_unichar_to_utf8 (wc, buf); - input = buf; } if (pango_is_zero_width (wc)) /* Zero-width characters */ @@ -396,7 +393,7 @@ hebrew_engine_fc_class_init (PangoEngineShapeClass *class) } PANGO_ENGINE_SHAPE_DEFINE_TYPE (HebrewEngineFc, hebrew_engine_fc, - hebrew_engine_fc_class_init, NULL); + hebrew_engine_fc_class_init, NULL) void PANGO_MODULE_ENTRY(init) (GTypeModule *module) diff --git a/modules/indic/indic-fc.c b/modules/indic/indic-fc.c index 4947b5b5..daa2c23e 100644 --- a/modules/indic/indic-fc.c +++ b/modules/indic/indic-fc.c @@ -407,7 +407,7 @@ indic_engine_fc_class_init (PangoEngineShapeClass *class) } PANGO_ENGINE_SHAPE_DEFINE_TYPE (IndicEngineFc, indic_engine_fc, - indic_engine_fc_class_init, NULL); + indic_engine_fc_class_init, NULL) void PANGO_MODULE_ENTRY(init) (GTypeModule *module) diff --git a/modules/khmer/khmer-fc.c b/modules/khmer/khmer-fc.c index 82541e44..82874624 100644 --- a/modules/khmer/khmer-fc.c +++ b/modules/khmer/khmer-fc.c @@ -741,7 +741,7 @@ khmer_engine_fc_class_init (PangoEngineShapeClass *class) } PANGO_ENGINE_SHAPE_DEFINE_TYPE (KhmerEngineFc, khmer_engine_fc, - khmer_engine_fc_class_init, NULL); + khmer_engine_fc_class_init, NULL) void diff --git a/modules/syriac/syriac-fc.c b/modules/syriac/syriac-fc.c index dab11efc..51260838 100644 --- a/modules/syriac/syriac-fc.c +++ b/modules/syriac/syriac-fc.c @@ -344,7 +344,7 @@ syriac_engine_fc_class_init (PangoEngineShapeClass *class) } PANGO_ENGINE_SHAPE_DEFINE_TYPE (SyriacEngineFc, syriac_engine_fc, - syriac_engine_fc_class_init, NULL); + syriac_engine_fc_class_init, NULL) void PANGO_MODULE_ENTRY(init) (GTypeModule *module) diff --git a/modules/thai/thai-fc.c b/modules/thai/thai-fc.c index aaedbb3e..4414bd93 100644 --- a/modules/thai/thai-fc.c +++ b/modules/thai/thai-fc.c @@ -247,7 +247,7 @@ thai_engine_fc_class_init (PangoEngineShapeClass *class) } PANGO_ENGINE_SHAPE_DEFINE_TYPE (ThaiEngineFc, thai_engine_fc, - thai_engine_fc_class_init, NULL); + thai_engine_fc_class_init, NULL) void PANGO_MODULE_ENTRY(init) (GTypeModule *module) diff --git a/modules/tibetan/tibetan-fc.c b/modules/tibetan/tibetan-fc.c index b4348c05..b2e12aff 100644 --- a/modules/tibetan/tibetan-fc.c +++ b/modules/tibetan/tibetan-fc.c @@ -597,7 +597,7 @@ tibetan_engine_fc_class_init (PangoEngineShapeClass *class) } PANGO_ENGINE_SHAPE_DEFINE_TYPE (TibetanEngineFc, tibetan_engine_fc, - tibetan_engine_fc_class_init, NULL); + tibetan_engine_fc_class_init, NULL) void |