Commit db5d99be authored by Noel Alonso's avatar Noel Alonso
Browse files

Modifica referencias a tipo cambiado

parent 7a548cb2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ public class ClearSelectionCancelledEvent extends SelectionCancelledEvent {
			+ getEventBaseSchema() + "]}");
	// @formatter:on

	static String type = SettingsEventTypes.CLEAR_CANCELLED;
	static String type = SettingsEventTypes.CLEAR_SELECTION_CANCELLED;

	public ClearSelectionCancelledEvent() {
		super(type);
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ public class ClearSelectionConfirmedEvent extends SimpleEvent {
			+ getEventBaseSchema() + "]}");
	// @formatter:on

	static String type = SettingsEventTypes.CLEAR_CONFIRMED;
	static String type = SettingsEventTypes.CLEAR_SELECTION_CONFIRMED;

	public ClearSelectionConfirmedEvent() {
		super(type);
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ public class ClearSelectionEvent extends SelectionEvent {
			+ getEventBaseSchema() + "]}");
	// @formatter:on

	static String type = SettingsEventTypes.CLEAR;
	static String type = SettingsEventTypes.CLEAR_SELECTION;

	public ClearSelectionEvent() {
		super(type);
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ public class ClearSelectionFailedEvent extends EventError {
			+ getEventBaseSchema() + "]}");
	// @formatter:on

	static String type = SettingsEventTypes.CLEAR_FAILED;
	static String type = SettingsEventTypes.CLEAR_SELECTION_FAILED;

	public ClearSelectionFailedEvent() {
		super(type);
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ public class PartialClearSelectionEvent extends SelectionEvent {
			+ getEventBaseSchema() + "]}");
	// @formatter:on

	static String type = SettingsEventTypes.CLEAR;
	static String type = SettingsEventTypes.PARTIAL_CLEAR_SELECTION;

	public PartialClearSelectionEvent() {
		super(type);
Loading