diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-09-25 16:40:45 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-09-25 16:40:45 +0000 |
commit | 80fb60e0c5e19de379941f85a4f361455459d818 (patch) | |
tree | 163128d5e335a3c26fef64f845cf80157f201238 /pango/pangoft2-fontmap.c | |
parent | 1bdcb77e1032c4b02f4838752b0ed64ef11036c9 (diff) | |
download | pango-80fb60e0c5e19de379941f85a4f361455459d818.tar.gz |
Version 0.20PANGO_0_20
Tue Sep 25 11:54:03 2001 Owen Taylor <otaylor@redhat.com>
* configure.in: Version 0.20
* NEWS: Updated
* configure.in (GLIB_REQUIRED_VERSION): Require GLib 1.3.9
* examples/Makefile.am (EXTRA_DIST): Add the viewer-qt
in case someone (say Tim) makes dist without qt installed.
(reported by Tony Graham)
* examples/Makefile.am (pango.modules): Don't use
grep -q (reported by Tony Graham)
* docs/pango-sections.txt: Fix small typo.
Diffstat (limited to 'pango/pangoft2-fontmap.c')
-rw-r--r-- | pango/pangoft2-fontmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pango/pangoft2-fontmap.c b/pango/pangoft2-fontmap.c index 8b0cf67c..e2aa3bca 100644 --- a/pango/pangoft2-fontmap.c +++ b/pango/pangoft2-fontmap.c @@ -420,7 +420,7 @@ pango_ft2_font_map_load_font (PangoFontMap *fontmap, g_return_val_if_fail (description != NULL, NULL); - name = g_ascii_strdown (pango_font_description_get_family (description)); + name = g_ascii_strdown (pango_font_description_get_family (description), -1); family_entry = g_hash_table_lookup (ft2fontmap->families, name); g_free (name); @@ -753,7 +753,7 @@ pango_ft2_insert_face (PangoFT2FontMap *ft2fontmap, PangoFT2OA *oa; FT_Open_Args *open_args; - family_name = g_ascii_strdown (face->family_name); + family_name = g_ascii_strdown (face->family_name, -1); if (face->style_flags & FT_STYLE_FLAG_ITALIC) style = PANGO_STYLE_ITALIC; |