goog.inherits = function(childCtor, parentCtor) { /** @constructor */ function tempCtor() {} tempCtor.prototype = parentCtor.prototype;//2367 childCtor.superClass_ = parentCtor.prototype; childCtor.prototype = new tempCtor(); /** @override */ childCtor.prototype.constructor = childCtor;
this is the base.js 2367 line etc. thanks. -- View this message in context: http://apache-flex-development.2333347.n4.nabble.com/why-can-not-open-this-code-tp53169p53200.html Sent from the Apache Flex Development mailing list archive at Nabble.com.