[Commits] r1290 - core/trunk/geoext/lib/GeoExt/data
commits at geoext.org
commits at geoext.org
Tue Jul 28 22:49:47 CEST 2009
Author: tschaub
Date: 2009-07-28 22:49:47 +0200 (Tue, 28 Jul 2009)
New Revision: 1290
Modified:
core/trunk/geoext/lib/GeoExt/data/ProtocolProxy.js
Log:
Calling the ProtocolProxy superclass constructor with all args. In 3.0 the config is needed. r=elemoine (closes #131)
Modified: core/trunk/geoext/lib/GeoExt/data/ProtocolProxy.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/data/ProtocolProxy.js 2009-07-28 08:55:02 UTC (rev 1289)
+++ core/trunk/geoext/lib/GeoExt/data/ProtocolProxy.js 2009-07-28 20:49:47 UTC (rev 1290)
@@ -14,8 +14,8 @@
Ext.namespace('GeoExt', 'GeoExt.data');
GeoExt.data.ProtocolProxy = function(config) {
- GeoExt.data.ProtocolProxy.superclass.constructor.call(this);
Ext.apply(this, config);
+ GeoExt.data.ProtocolProxy.superclass.constructor.apply(this, arguments);
};
/** api: constructor
More information about the Commits
mailing list