From c73291770ca7e9f51f89a4cb3035679294cd354e Mon Sep 17 00:00:00 2001 From: euzuro Date: Sat, 17 Jun 2006 14:59:20 +0000 Subject: [PATCH] cosmetic change. relic variable name from ve layer implementation git-svn-id: http://svn.openlayers.org/trunk/openlayers@612 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Layer/Google.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/OpenLayers/Layer/Google.js b/lib/OpenLayers/Layer/Google.js index 3a4a7af98d..f746905a0a 100644 --- a/lib/OpenLayers/Layer/Google.js +++ b/lib/OpenLayers/Layer/Google.js @@ -64,11 +64,11 @@ OpenLayers.Layer.Google.prototype = Object.extend( new OpenLayers.Layer(), { */ loadGMap:function() { // create div and set to same size as map - var veDiv = OpenLayers.Util.createDiv(this.name); + var gDiv = OpenLayers.Util.createDiv(this.name); var sz = this.map.getSize(); - veDiv.style.width = sz.w; - veDiv.style.height = sz.h; - this.div.appendChild(veDiv); + gDiv.style.width = sz.w; + gDiv.style.height = sz.h; + this.div.appendChild(gDiv); // create GMap, hide nav controls this.gmap = new GMap2(this.div);