Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/Gestures/ActorTarget.vala
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public class Gala.ActorTarget : Clutter.Actor, GestureTarget {
public virtual void commit_progress (GestureAction action, double to) {}
public virtual void end_progress (GestureAction action) {}

public override void propagate (UpdateType update_type, GestureAction action, double progress) {
public void propagate (UpdateType update_type, GestureAction action, double progress) {
if (update_type == COMMIT) {
current_commit[action] = progress;
} else {
Expand Down
2 changes: 1 addition & 1 deletion lib/Gestures/GestureTarget.vala
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ public interface Gala.GestureTarget : Object {
END
}

public virtual void propagate (UpdateType update_type, GestureAction action, double progress) { }
public abstract void propagate (UpdateType update_type, GestureAction action, double progress);
}
2 changes: 1 addition & 1 deletion lib/Gestures/PropertyTarget.vala
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class Gala.PropertyTarget : Object, GestureTarget {
target = null;
}

public override void propagate (UpdateType update_type, GestureAction action, double progress) {
public void propagate (UpdateType update_type, GestureAction action, double progress) {
if (target == null || update_type != UPDATE || action != this.action) {
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/ShellClients/ShellClientsManager.vala
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public class Gala.ShellClientsManager : Object, GestureTarget {
window.unmanaging.connect_after ((_window) => positioned_windows.remove (_window));
}

public override void propagate (UpdateType update_type, GestureAction action, double progress) {
public void propagate (UpdateType update_type, GestureAction action, double progress) {
foreach (var window in positioned_windows.get_values ()) {
window.propagate (update_type, action, progress);
}
Expand Down
2 changes: 1 addition & 1 deletion src/ShellClients/ShellWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class Gala.ShellWindow : PositionedWindow, GestureTarget {
);
}

public override void propagate (UpdateType update_type, GestureAction action, double progress) {
public void propagate (UpdateType update_type, GestureAction action, double progress) {
switch (update_type) {
case START:
animations_ongoing++;
Expand Down
2 changes: 1 addition & 1 deletion src/Widgets/WindowSwitcher/WindowSwitcher.vala
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public class Gala.WindowSwitcher : CanvasActor, GestureTarget, RootTarget {
ctx.restore ();
}

public override void propagate (UpdateType update_type, GestureAction action, double progress) {
public void propagate (UpdateType update_type, GestureAction action, double progress) {
if (update_type != UPDATE || container.get_n_children () == 0) {
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Zoom.vala
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class Gala.Zoom : Object, GestureTarget, RootTarget {
gesture_controller.goto (current_commit + (delta / 10));
}

public override void propagate (UpdateType update_type, GestureAction action, double progress) {
public void propagate (UpdateType update_type, GestureAction action, double progress) {
switch (update_type) {
case COMMIT:
current_commit = progress;
Expand Down