cleanup: Remove erroneous vfunc parameters

Unlike in C or signal handlers, vfuncs don't include the this-object
in their arguments.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/388
This commit is contained in:
Florian Müllner
2019-01-31 22:07:38 +01:00
committed by Florian Müllner
parent cdd2803498
commit 15e7625c80
7 changed files with 17 additions and 17 deletions

View File

@ -81,7 +81,7 @@ var ShowOverviewAction = GObject.registerClass({
});
}
vfunc_gesture_prepare(action, actor) {
vfunc_gesture_prepare(actor) {
return Main.actionMode == Shell.ActionMode.NORMAL &&
this.get_n_current_points() == this.get_n_touch_points();
}
@ -115,12 +115,12 @@ var ShowOverviewAction = GObject.registerClass({
height: maxY - minY });
}
vfunc_gesture_begin(action, actor) {
vfunc_gesture_begin(actor) {
this._initialRect = this._getBoundingRect(false);
return true;
}
vfunc_gesture_end(action, actor) {
vfunc_gesture_end(actor) {
let rect = this._getBoundingRect(true);
let oldArea = this._initialRect.width * this._initialRect.height;
let newArea = rect.width * rect.height;