mirror of
https://github.com/brl/mutter.git
synced 2025-06-13 16:59:30 +00:00
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:

committed by
Georges Basile Stavracas Neto

parent
8c89ea5f0a
commit
e82a657cd9
@ -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;
|
||||
|
Reference in New Issue
Block a user