clutter/backend: Remove unused font_name field

We already store the exact same thing in ClutterSettings.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/4106>
This commit is contained in:
Bilal Elmoussaoui 2024-10-24 01:13:28 +02:00 committed by Marge Bot
parent 3153708e85
commit 17e7f9be51
2 changed files with 0 additions and 3 deletions

View File

@ -51,8 +51,6 @@ struct _ClutterBackend
cairo_font_options_t *font_options;
gchar *font_name;
float fallback_resource_scale;
ClutterStageWindow *stage_window;

View File

@ -93,7 +93,6 @@ clutter_backend_dispose (GObject *gobject)
}
g_clear_pointer (&backend->cogl_source, g_source_destroy);
g_clear_pointer (&backend->font_name, g_free);
g_clear_pointer (&backend->font_options, cairo_font_options_destroy);
g_clear_object (&backend->input_method);