[pango] Call g_type_init if necessary
- From: Behdad Esfahbod <behdad src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pango] Call g_type_init if necessary
- Date: Fri, 15 Mar 2013 10:26:00 +0000 (UTC)
commit 71006c534a5599f0a69f4bd9b6677b2a6ad5adb3
Author: Behdad Esfahbod <behdad behdad org>
Date: Fri Mar 15 06:03:52 2013 -0400
Call g_type_init if necessary
pango/pangocairo-fontmap.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
---
diff --git a/pango/pangocairo-fontmap.c b/pango/pangocairo-fontmap.c
index 8f3cc53..a143190 100644
--- a/pango/pangocairo-fontmap.c
+++ b/pango/pangocairo-fontmap.c
@@ -66,6 +66,10 @@ pango_cairo_font_map_default_init (PangoCairoFontMapIface *iface)
PangoFontMap *
pango_cairo_font_map_new (void)
{
+#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)
return g_object_new (PANGO_TYPE_CAIRO_CORE_TEXT_FONT_MAP, NULL);
#elif defined(HAVE_CAIRO_WIN32)
@@ -99,6 +103,10 @@ 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)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]