|
From: <luk...@us...> - 2006-03-05 01:34:39
|
Revision: 8 Author: lukebayes Date: 2006-03-04 17:34:36 -0800 (Sat, 04 Mar 2006) ViewCVS: http://svn.sourceforge.net/asunit/?rev=8&view=rev Log Message: ----------- - Removed alert statement from constructorType changed - set "public" as the default type for constructors as they were printing "undefined" for as2 and as25 builds Modified Paths: -------------- trunk/xului/src/chrome/asunit/content/asunit/script/ClassModel.js trunk/xului/src/chrome/asunit/content/asunit/script/CreateClass.js Modified: trunk/xului/src/chrome/asunit/content/asunit/script/ClassModel.js =================================================================== --- trunk/xului/src/chrome/asunit/content/asunit/script/ClassModel.js 2006-03-05 01:18:26 UTC (rev 7) +++ trunk/xului/src/chrome/asunit/content/asunit/script/ClassModel.js 2006-03-05 01:34:36 UTC (rev 8) @@ -61,7 +61,7 @@ ClassModel.prototype.template = ""; ClassModel.prototype.classPath = ""; ClassModel.prototype.className = ""; -ClassModel.prototype.constructorType = ""; +ClassModel.prototype.constructorType = "public"; ClassModel.prototype.superClassName = ""; ClassModel.prototype.testCaseType = ClassModel.STANDARD_TYPE; ClassModel.prototype.interfaces = new Array(); Modified: trunk/xului/src/chrome/asunit/content/asunit/script/CreateClass.js =================================================================== --- trunk/xului/src/chrome/asunit/content/asunit/script/CreateClass.js 2006-03-05 01:18:26 UTC (rev 7) +++ trunk/xului/src/chrome/asunit/content/asunit/script/CreateClass.js 2006-03-05 01:34:36 UTC (rev 8) @@ -287,8 +287,7 @@ CreateClass.prototype.onConstructorTypeChanged = function(event) { var combo = this.targetEnvironment; - - alert("on template changed with: " + combo); +// alert("on template changed with: " + combo); } CreateClass.prototype.onConstructorTypeChanged = function(event) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |