Skip to content

Commit 4e62391

Browse files
committed
Oops, fix naming
1 parent 369a8c8 commit 4e62391

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/RoundedCornersEffect.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ public class Gala.RoundedCornersEffect : Clutter.ShaderEffect {
4747
}
4848
}
4949

50-
public override void set_actor (Clutter.Actor? actor) {
50+
public override void set_actor (Clutter.Actor? new_actor) {
5151
if (actor != null) {
5252
actor.notify["width"].disconnect (update_actor_size);
5353
actor.notify["height"].disconnect (update_actor_size);
5454
}
5555

56-
base.set_actor (actor);
56+
base.set_actor (new_actor);
5757

5858
if (actor != null) {
5959
actor.notify["width"].connect (update_actor_size);

0 commit comments

Comments
 (0)