diff options
author | Hans Breuer <hans@breuer.org> | 2006-02-25 17:33:48 +0000 |
---|---|---|
committer | Hans Breuer <hans@src.gnome.org> | 2006-02-25 17:33:48 +0000 |
commit | d952f4afb641fc9f4b42f8347bfa381897ea6830 (patch) | |
tree | 67932f10f57a6a0a3c531470c050bb0327e1e114 /pango/pangocairo-win32font.c | |
parent | fef08ef86b516ebff0c28f8c5cd6474548135ac5 (diff) | |
download | pango-d952f4afb641fc9f4b42f8347bfa381897ea6830.tar.gz |
return TRUE to glyphs rendered at all (instead of box). This may be
2006-02-25 Hans Breuer <hans@breuer.org>
* pango/pangocairo-win32font.c(pango_cairo_win32_font_install) :
return TRUE to glyphs rendered at all (instead of box). This may
be compiler specific (what to return w/o return) but fixes bug #332538
* pango/makefile.msc : updated
* pango/pango.def : just some sorting
Diffstat (limited to 'pango/pangocairo-win32font.c')
-rw-r--r-- | pango/pangocairo-win32font.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pango/pangocairo-win32font.c b/pango/pangocairo-win32font.c index 80661c3c..40e5be85 100644 --- a/pango/pangocairo-win32font.c +++ b/pango/pangocairo-win32font.c @@ -148,6 +148,8 @@ pango_cairo_win32_font_install (PangoCairoFont *font, pango_cairo_win32_font_get_font_face (font)); cairo_set_font_matrix (cr, &cwfont->font_matrix); cairo_set_font_options (cr, cwfont->options); + + return TRUE; } static void |