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
@@ -48,7 +48,8 @@ public class InvocationNotificationEvent extends DEvent
* only values of valid distributed object types.
*/
public function InvocationNotificationEvent (
targetOid :int, receiverId :int, methodId :int, args :Array)
targetOid :int = 0, receiverId :int = 0, methodId :int = 0,
args :Array = null)
{
super(targetOid);
_receiverId = receiverId;