Rename _ol_render_Box_ to RenderBox

This commit is contained in:
Marc Jansen
2018-02-06 06:39:15 +01:00
parent 5d62a89999
commit 3fee998108
4 changed files with 18 additions and 18 deletions

View File

@@ -6,7 +6,7 @@ import Event from '../events/Event.js';
import {inherits, nullFunction} from '../index.js';
import {always, mouseOnly, mouseActionButton} from '../events/condition.js';
import PointerInteraction from '../interaction/Pointer.js';
import _ol_render_Box_ from '../render/Box.js';
import RenderBox from '../render/Box.js';
/**
* @classdesc
@@ -39,7 +39,7 @@ const DragBox = function(opt_options) {
* @type {ol.render.Box}
* @private
*/
this.box_ = new _ol_render_Box_(options.className || 'ol-dragbox');
this.box_ = new RenderBox(options.className || 'ol-dragbox');
/**
* @type {number}