From c9171b86829ceb588edd9c2f01ab429e79964ab3 Mon Sep 17 00:00:00 2001 From: Florent gravin Date: Wed, 24 Sep 2014 11:08:27 +0200 Subject: [PATCH] Pass options from v2 to its parent constructor --- src/ol/format/gml/v2.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ol/format/gml/v2.js b/src/ol/format/gml/v2.js index 2911f4f78d..32b04137d5 100644 --- a/src/ol/format/gml/v2.js +++ b/src/ol/format/gml/v2.js @@ -24,12 +24,13 @@ goog.require('ol.xml'); */ ol.format.GML.v2 = function(opt_options) { - goog.base(this); + goog.base(this, opt_options); }; goog.inherits(ol.format.GML.v2, ol.format.GML); /** + * @const * @private * @type {string} */