summaryrefslogtreecommitdiff
path: root/pango/pangocairo-fontmap.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-07-04 15:22:56 +0000
committerMatthias Clasen <mclasen@redhat.com>2019-07-04 15:22:56 +0000
commit9077d7fb83fbc09f777a3d482d6c7ad60f1d786a (patch)
treee9d8424853c321cee5c97ecf2b3867e473fca359 /pango/pangocairo-fontmap.c
parent9eff435d13228cf57d951673220ca569392fd803 (diff)
downloadpango-9077d7fb83fbc09f777a3d482d6c7ad60f1d786a.tar.gz
Drop g_type_init calls
These were ifdefed to an older version of GLib than we require now, so are just dead code.
Diffstat (limited to 'pango/pangocairo-fontmap.c')
-rw-r--r--pango/pangocairo-fontmap.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/pango/pangocairo-fontmap.c b/pango/pangocairo-fontmap.c
index 177dbbce..dce640e3 100644
--- a/pango/pangocairo-fontmap.c
+++ b/pango/pangocairo-fontmap.c
@@ -76,10 +76,6 @@ pango_cairo_font_map_new (void)
const char *backend = getenv ("PANGOCAIRO_BACKEND");
if (backend && !*backend)
backend = NULL;
-#if !GLIB_CHECK_VERSION (2, 35, 3)
- /* Make sure that the type system is initialized */
- g_type_init ();
-#endif
#if defined(HAVE_CORE_TEXT) && defined (HAVE_CAIRO_QUARTZ)
if (!backend || 0 == strcmp (backend, "coretext"))
return g_object_new (PANGO_TYPE_CAIRO_CORE_TEXT_FONT_MAP, NULL);
@@ -131,10 +127,6 @@ pango_cairo_font_map_new (void)
PangoFontMap *
pango_cairo_font_map_new_for_font_type (cairo_font_type_t fonttype)
{
-#if !GLIB_CHECK_VERSION (2, 35, 3)
- /* Make sure that the type system is initialized */
- g_type_init ();
-#endif
switch ((int) fonttype)
{
#if defined(HAVE_CORE_TEXT) && defined (HAVE_CAIRO_QUARTZ)