Rename ol.MVCObject to ol.Object

This commit is contained in:
Tom Payne
2012-07-06 20:25:37 +02:00
committed by Tom Payne
parent 4bdaf293b0
commit 438d5f2484
7 changed files with 129 additions and 131 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
goog.provide('ol.Layer');
goog.require('ol.Extent');
goog.require('ol.MVCObject');
goog.require('ol.Object');
goog.require('ol.Projection');
@@ -19,14 +19,14 @@ ol.LayerProperty_ = {
/**
* @constructor
* @extends {ol.MVCObject}
* @extends {ol.Object}
*/
ol.Layer = function() {
goog.base(this);
};
goog.inherits(ol.Layer, ol.MVCObject);
goog.inherits(ol.Layer, ol.Object);
/**