diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-01-16 20:20:35 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-01-16 20:20:35 +0000 |
commit | a0225fbf560de93c7b41acf9dbf01c9d99173af9 (patch) | |
tree | bb8f58010c8801a27545728393253b6c4722c6c4 /pango/shape.c | |
parent | 0ee36da9691c2311d2134fd61f222ea3bed5827e (diff) | |
download | pango-a0225fbf560de93c7b41acf9dbf01c9d99173af9.tar.gz |
*.c, *.h: Replace preceding sequences of 8 spaces with tabs.
2007-01-16 Behdad Esfahbod <behdad@gnome.org>
*.c, *.h: Replace preceding sequences of 8 spaces with tabs.
svn path=/trunk/; revision=2165
Diffstat (limited to 'pango/shape.c')
-rw-r--r-- | pango/shape.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pango/shape.c b/pango/shape.c index 8bf5c366..8e535aca 100644 --- a/pango/shape.c +++ b/pango/shape.c @@ -39,9 +39,9 @@ */ void pango_shape (const gchar *text, - gint length, - const PangoAnalysis *analysis, - PangoGlyphString *glyphs) + gint length, + const PangoAnalysis *analysis, + PangoGlyphString *glyphs) { int i; int last_cluster; @@ -52,7 +52,7 @@ pango_shape (const gchar *text, text, length, analysis, glyphs); if (G_UNLIKELY (glyphs->num_glyphs == 0)) - { + { /* If a font has been correctly chosen, but no glyphs are output, * there's probably something wrong with the shaper. Trying to be * informative, we print out the font description, but to not @@ -87,13 +87,13 @@ pango_shape (const gchar *text, { if (!PANGO_IS_ENGINE_SHAPE (analysis->shape_engine) && !_pango_warning_history.shape_shape_engine) - { + { _pango_warning_history.shape_shape_engine = TRUE; g_warning ("pango_shape called with bad shape_engine, expect ugly output"); } if (!PANGO_IS_FONT (analysis->font) && !_pango_warning_history.shape_font) - { + { _pango_warning_history.shape_font = TRUE; g_warning ("pango_shape called with bad font, expect ugly output"); } |