From 6194a1114f3358f4e4cea5507f1ce3b5df164308 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Mon, 3 Aug 2009 22:12:52 +0000 Subject: [PATCH] Colors are uints. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@844 ed5b42cb-e716-0410-a449-f6a68f950b19 --- src/as/com/threerings/flex/ChatControl.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/flex/ChatControl.as b/src/as/com/threerings/flex/ChatControl.as index 9beebc21..aa896000 100644 --- a/src/as/com/threerings/flex/ChatControl.as +++ b/src/as/com/threerings/flex/ChatControl.as @@ -117,7 +117,7 @@ public class ChatControl extends HBox /** * Configures the background color of the text entry area. */ - public function setChatColor (color :int) :void + public function setChatColor (color :uint) :void { _txt.setStyle("backgroundColor", color); }