Match recent changes on Java side.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4432 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-10-23 17:47:43 +00:00
parent a98a15a6d4
commit 8683642e4f
4 changed files with 41 additions and 18 deletions
@@ -37,7 +37,8 @@ public class ChatDisplayBox extends TextArea
}
// documentation inherited from interface ChatDisplay
public function displayMessage (msg :ChatMessage) :void
public function displayMessage (
msg :ChatMessage, alreadyDisplayed :Boolean) :Boolean
{
if (!_scrollBot) {
_scrollBot = (verticalScrollPosition == maxVerticalScrollPosition);
@@ -49,6 +50,7 @@ public class ChatDisplayBox extends TextArea
(msg as UserMessage).speaker + "&gt;</font> ";
}
this.htmlText += msg.message;
return true;
}
override public function parentChanged (p :DisplayObjectContainer) :void