Rename _ol_Object_ to BaseObject

This commit is contained in:
Tim Schaub
2018-01-08 10:03:31 -07:00
parent 35db8721b2
commit 24dd0ca924
21 changed files with 95 additions and 95 deletions

View File

@@ -2,7 +2,7 @@
* @module ol/source/Source
*/
import {inherits, nullFunction} from '../index.js';
import _ol_Object_ from '../Object.js';
import BaseObject from '../Object.js';
import {get as getProjection} from '../proj.js';
import SourceState from '../source/State.js';
@@ -23,7 +23,7 @@ import SourceState from '../source/State.js';
*/
var Source = function(options) {
_ol_Object_.call(this);
BaseObject.call(this);
/**
* @private
@@ -52,7 +52,7 @@ var Source = function(options) {
};
inherits(Source, _ol_Object_);
inherits(Source, BaseObject);
/**
* Turns the attributions option into an attributions function.