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.h | |
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.h')
-rw-r--r-- | font-viewer/font-utils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/font-viewer/font-utils.h b/font-viewer/font-utils.h index 51bf47d5..4e6959b1 100644 --- a/font-viewer/font-utils.h +++ b/font-viewer/font-utils.h @@ -27,7 +27,8 @@ gchar * 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); #endif /* __FONT_UTILS_H__ */ |