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.Camera');
goog.require('goog.math.Coordinate');
goog.require('ol.MVCObject');
goog.require('ol.Object');
/**
@@ -18,14 +18,14 @@ ol.CameraProperty_ = {
/**
* @constructor
* @extends {ol.MVCObject}
* @extends {ol.Object}
*/
ol.Camera = function() {
goog.base(this);
};
goog.inherits(ol.Camera, ol.MVCObject);
goog.inherits(ol.Camera, ol.Object);
/**