Use oli.FrameState instead of ol.FrameState

This commit is contained in:
Tom Payne
2014-03-10 14:48:23 +01:00
parent 8aca7ce140
commit 022a7a03e0
14 changed files with 43 additions and 87 deletions
+2 -3
View File
@@ -2,7 +2,6 @@ goog.provide('ol.MapEvent');
goog.provide('ol.MapEventType');
goog.require('goog.events.Event');
goog.require('ol.FrameState');
/**
@@ -20,7 +19,7 @@ ol.MapEventType = {
* @extends {goog.events.Event}
* @param {string} type Event type.
* @param {ol.Map} map Map.
* @param {?ol.FrameState=} opt_frameState Frame state.
* @param {?oli.FrameState=} opt_frameState Frame state.
*/
ol.MapEvent = function(type, map, opt_frameState) {
@@ -32,7 +31,7 @@ ol.MapEvent = function(type, map, opt_frameState) {
this.map = map;
/**
* @type {?ol.FrameState}
* @type {?oli.FrameState}
*/
this.frameState = goog.isDef(opt_frameState) ? opt_frameState : null;