clutter/stage: Remove unused paint_data/notify fields

It's usage was removed in ec911dc8b96a6cceac2a6582679528f2d599cb32 back
in 2014. Lets get rid of the left over fields.

https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1175
This commit is contained in:
Jonas Ådahl 2020-04-03 18:59:35 +02:00 committed by Georges Basile Stavracas Neto
parent 6f0e5b0b56
commit 3f068d1138

View File

@ -140,9 +140,6 @@ struct _ClutterStagePrivate
ClutterStageState current_state;
gpointer paint_data;
GDestroyNotify paint_notify;
int update_freeze_count;
guint redraw_pending : 1;
@ -1959,9 +1956,6 @@ clutter_stage_finalize (GObject *object)
if (priv->fps_timer != NULL)
g_timer_destroy (priv->fps_timer);
if (priv->paint_notify != NULL)
priv->paint_notify (priv->paint_data);
G_OBJECT_CLASS (clutter_stage_parent_class)->finalize (object);
}