Avoid calling the type constant TYPE.

Make a reasonable name for each.


git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@542 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2008-01-08 01:36:18 +00:00
parent 6e5142f938
commit d198c25780
7 changed files with 12 additions and 12 deletions
@@ -29,7 +29,7 @@ import flash.events.Event;
public class UserChatEvent extends EZEvent
{
/** The type of a property change event. */
public static const TYPE :String = "UserChat";
public static const USER_CHAT :String = "UserChat";
/**
* Get the name of the user who spoke.
@@ -52,7 +52,7 @@ public class UserChatEvent extends EZEvent
*/
public function UserChatEvent (gameCtrl :Object, speaker :int, message :String)
{
super(TYPE, gameCtrl);
super(USER_CHAT, gameCtrl);
_speaker = speaker;
_message = message;
}