diff options
author | raveit65 <[email protected]> | 2017-03-08 13:32:04 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-03-08 16:08:00 +0100 |
commit | 440e7588459f39a56043bc85658aec5a9262a2e3 (patch) | |
tree | 750a89986fc82ea2af9a1311790991cfdaa0a48d /font-viewer/font-utils.c | |
parent | adff2474297f0153bd5f06b9e89b7674eaef7435 (diff) | |
download | mate-control-center-440e7588459f39a56043bc85658aec5a9262a2e3.tar.bz2 mate-control-center-440e7588459f39a56043bc85658aec5a9262a2e3.tar.xz |
font-viewer font-utils: Add face_index argument
font_utils_get_font_name_for_file() now takes face index as the third
argument. All callers changed.
Diffstat (limited to 'font-viewer/font-utils.c')
-rw-r--r-- | font-viewer/font-utils.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/font-viewer/font-utils.c b/font-viewer/font-utils.c index 6c96395a..c9a84349 100644 --- a/font-viewer/font-utils.c +++ b/font-viewer/font-utils.c @@ -37,7 +37,8 @@ font_utils_get_font_name (FT_Face face) gchar * font_utils_get_font_name_for_file (FT_Library library, - const gchar *path) + const gchar *path, + gint face_index) { GFile *file; gchar *uri, *contents = NULL, *name = NULL; @@ -47,7 +48,8 @@ font_utils_get_font_name_for_file (FT_Library library, file = g_file_new_for_path (path); uri = g_file_get_uri (file); - face = sushi_new_ft_face_from_uri (library, uri, 0, &contents, &error); + face = sushi_new_ft_face_from_uri (library, uri, face_index, &contents, + &error); if (face != NULL) { name = font_utils_get_font_name (face); FT_Done_Face (face); |