Fixed up some event constructors that didn't have zero-arg forms.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4157 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-05-30 21:08:39 +00:00
parent 3a7fe70124
commit a3dfc741c6
6 changed files with 15 additions and 10 deletions
@@ -30,12 +30,14 @@ public class ElementUpdatedEvent extends NamedEvent
* @param index the index in the array of the updated element.
*/
public function ElementUpdatedEvent (
targetOid :int, name :String, value :Object, oldValue :Object,
index :int)
targetOid :int = 0, name :String = null, value :Object = null,
oldValue :Object = null, index :int = 0)
{
super(targetOid, name);
_value = value;
_oldValue = oldValue;
if (oldValue != null) {
_oldValue = oldValue;
}
_index = index;
}