wayland: Remove self assignment

Don't assign the value of a variable to itself. It was added just for
clarity, but it makes coverity complain, so remove it.

https://bugzilla.gnome.org/show_bug.cgi?id=780301
This commit is contained in:
Jonas Ådahl 2017-03-20 21:37:10 +08:00 committed by Matthias Clasen
parent 9f9aaea319
commit 5c74afb2f1

View File

@ -1779,19 +1779,14 @@ calculate_popup_rect (GdkWindow *window,
{
case GDK_GRAVITY_STATIC:
case GDK_GRAVITY_NORTH_WEST:
x = x;
y = y;
break;
case GDK_GRAVITY_NORTH:
x -= geometry.width / 2;
y = y;
break;
case GDK_GRAVITY_NORTH_EAST:
x -= geometry.width;
y = y;
break;
case GDK_GRAVITY_WEST:
x = x;
y -= geometry.height / 2;
break;
case GDK_GRAVITY_CENTER:
@ -1803,7 +1798,6 @@ calculate_popup_rect (GdkWindow *window,
y -= geometry.height / 2;
break;
case GDK_GRAVITY_SOUTH_WEST:
x = x;
y -= geometry.height;
break;
case GDK_GRAVITY_SOUTH: