diff --git a/clutter/clutter/clutter-actor.c b/clutter/clutter/clutter-actor.c index e87fcfa9f..9746397ad 100644 --- a/clutter/clutter/clutter-actor.c +++ b/clutter/clutter/clutter-actor.c @@ -12958,11 +12958,11 @@ clutter_actor_get_pango_context (ClutterActor *self) priv->pango_context = clutter_actor_create_pango_context (self); priv->resolution_changed_id = - g_signal_connect_object (backend, "resolution-changed", - G_CALLBACK (update_pango_context), priv->pango_context, 0); + g_signal_connect (backend, "resolution-changed", + G_CALLBACK (update_pango_context), priv->pango_context); priv->font_changed_id = - g_signal_connect_object (backend, "font-changed", - G_CALLBACK (update_pango_context), priv->pango_context, 0); + g_signal_connect (backend, "font-changed", + G_CALLBACK (update_pango_context), priv->pango_context); } else update_pango_context (backend, priv->pango_context);