clutter/actor: Remove color from the pick virtual function

It's unused since commit 14c706e51.

**ABI break**

https://gitlab.gnome.org/GNOME/mutter/merge_requests/851
This commit is contained in:
Daniel van Vugt
2019-10-14 15:10:51 +08:00
committed by Georges Basile Stavracas Neto
parent 8c89ea5f0a
commit e82a657cd9
5 changed files with 10 additions and 25 deletions

View File

@ -129,8 +129,7 @@ meta_surface_actor_paint (ClutterActor *actor)
}
static void
meta_surface_actor_pick (ClutterActor *actor,
const ClutterColor *color)
meta_surface_actor_pick (ClutterActor *actor)
{
MetaSurfaceActor *self = META_SURFACE_ACTOR (actor);
MetaSurfaceActorPrivate *priv =
@ -143,7 +142,7 @@ meta_surface_actor_pick (ClutterActor *actor,
/* If there is no region then use the regular pick */
if (priv->input_region == NULL)
CLUTTER_ACTOR_CLASS (meta_surface_actor_parent_class)->pick (actor, color);
CLUTTER_ACTOR_CLASS (meta_surface_actor_parent_class)->pick (actor);
else
{
int n_rects;