summaryrefslogtreecommitdiff
path: root/utils/viewer-pangoxft.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-09-18 15:33:27 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-09-18 15:33:27 -0400
commite8181138ab5b4403bee552e768d53a0674d881dd (patch)
tree8ccf747553a6114ec47b78981ec1ccc9ca7d2dda /utils/viewer-pangoxft.c
parentf36934d527a320f95643fae6caf3e4fb0b90f692 (diff)
downloadpango-e8181138ab5b4403bee552e768d53a0674d881dd.tar.gz
utils: Don't use deprecated api
Port pango-viewer to use the new pango_fc_font_map_set_default_substitute.
Diffstat (limited to 'utils/viewer-pangoxft.c')
-rw-r--r--utils/viewer-pangoxft.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/viewer-pangoxft.c b/utils/viewer-pangoxft.c
index 948cd90e..95a4545e 100644
--- a/utils/viewer-pangoxft.c
+++ b/utils/viewer-pangoxft.c
@@ -51,8 +51,8 @@ pangoxft_view_create (const PangoViewer *klass)
XftInit (NULL);
- pango_xft_set_default_substitute (instance->display, instance->screen,
- default_substitute, NULL, NULL);
+ pango_fc_font_map_set_default_substitute (PANGO_FC_FONT_MAP (pango_xft_get_font_map (instance->display, instance->screen)),
+ default_substitute, NULL, NULL);
return instance;
}