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
{
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:
y -= geometry.height / 2;
break;
case GDK_GRAVITY_SOUTH_WEST:
- x = x;
y -= geometry.height;
break;
case GDK_GRAVITY_SOUTH: