Rename _ol_events_Event_ to Event

This commit is contained in:
Marc Jansen
2017-12-15 09:37:05 +01:00
committed by Frederic Junod
parent 9622c64bc6
commit 1cc682e488
27 changed files with 85 additions and 85 deletions

View File

@@ -6,7 +6,7 @@ import _ol_ImageCanvas_ from '../ImageCanvas.js';
import _ol_TileQueue_ from '../TileQueue.js';
import {createCanvasContext2D} from '../dom.js';
import _ol_events_ from '../events.js';
import _ol_events_Event_ from '../events/Event.js';
import Event from '../events/Event.js';
import _ol_events_EventType_ from '../events/EventType.js';
import {Processor as _ol_ext_pixelworks_Processor_} from 'pixelworks';
import {equals, getCenter, getHeight, getWidth} from '../extent.js';
@@ -431,7 +431,7 @@ _ol_source_Raster_.createTileRenderer_ = function(source) {
* @param {Object} data An object made available to operations.
*/
_ol_source_Raster_.Event = function(type, frameState, data) {
_ol_events_Event_.call(this, type);
Event.call(this, type);
/**
* The raster extent.
@@ -456,7 +456,7 @@ _ol_source_Raster_.Event = function(type, frameState, data) {
this.data = data;
};
inherits(_ol_source_Raster_.Event, _ol_events_Event_);
inherits(_ol_source_Raster_.Event, Event);
/**