diff options
author | raveit65 <[email protected]> | 2017-03-08 13:24:04 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-03-08 16:08:00 +0100 |
commit | adff2474297f0153bd5f06b9e89b7674eaef7435 (patch) | |
tree | 5bc4a9dfb1e1647de9dff9c3418bac27793378ad /font-viewer/font-thumbnailer.c | |
parent | cc55fabbf675e4f4b8c79d8be1ab3cb5c503f907 (diff) | |
download | mate-control-center-adff2474297f0153bd5f06b9e89b7674eaef7435.tar.bz2 mate-control-center-adff2474297f0153bd5f06b9e89b7674eaef7435.tar.xz |
sushi-font-loader: Add face_index argument
sushi_new_ft_face_from_uri{,_async}() now takes face index as the third
argument. All callers changed.
https://bugzilla.gnome.org/show_bug.cgi?id=752005
taken from:
https://git.gnome.org/browse/gnome-font-viewer/commit/?id=28bab70
Diffstat (limited to 'font-viewer/font-thumbnailer.c')
-rw-r--r-- | font-viewer/font-thumbnailer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/font-viewer/font-thumbnailer.c b/font-viewer/font-thumbnailer.c index 4ce71f73..74b135d0 100644 --- a/font-viewer/font-thumbnailer.c +++ b/font-viewer/font-thumbnailer.c @@ -237,7 +237,7 @@ main (int argc, uri = g_file_get_uri (file); g_object_unref (file); - face = sushi_new_ft_face_from_uri (library, uri, &contents, &gerror); + face = sushi_new_ft_face_from_uri (library, uri, 0, &contents, &gerror); if (gerror) { g_printerr ("Could not load face '%s': %s\n", uri, gerror->message); |