[Commits] r2198 - core/trunk/geoext/lib/GeoExt/widgets/tree
commits at geoext.org
commits at geoext.org
Tue May 18 21:53:17 CEST 2010
Author: tschaub
Date: 2010-05-18 21:53:17 +0200 (Tue, 18 May 2010)
New Revision: 2198
Modified:
core/trunk/geoext/lib/GeoExt/widgets/tree/LayerParamLoader.js
core/trunk/geoext/lib/GeoExt/widgets/tree/LayerParamNode.js
Log:
Correcting the LayerParamLoader and LayerParamNode so they call the proper superclass. r=ahocevar (closes #281)
Modified: core/trunk/geoext/lib/GeoExt/widgets/tree/LayerParamLoader.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/tree/LayerParamLoader.js 2010-05-18 06:31:41 UTC (rev 2197)
+++ core/trunk/geoext/lib/GeoExt/widgets/tree/LayerParamLoader.js 2010-05-18 19:53:17 UTC (rev 2198)
@@ -46,7 +46,7 @@
"load"
);
- GeoExt.tree.LayerLoader.superclass.constructor.call(this);
+ GeoExt.tree.LayerParamLoader.superclass.constructor.call(this);
};
Ext.extend(GeoExt.tree.LayerParamLoader, Ext.util.Observable, {
Modified: core/trunk/geoext/lib/GeoExt/widgets/tree/LayerParamNode.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/tree/LayerParamNode.js 2010-05-18 06:31:41 UTC (rev 2197)
+++ core/trunk/geoext/lib/GeoExt/widgets/tree/LayerParamNode.js 2010-05-18 19:53:17 UTC (rev 2198)
@@ -248,7 +248,7 @@
this.un("checkchange", this.onCheckChange, this);
- GeoExt.tree.LayerNode.superclass.destroy.apply(this, arguments);
+ GeoExt.tree.LayerParamNode.superclass.destroy.apply(this, arguments);
}
});
More information about the Commits
mailing list