From 03dec963f11e33f33238ec37faad8f061333d023 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 14 Mar 2008 01:04:07 +0000 Subject: [PATCH] Add an accessor for our chatInput field. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@446 ed5b42cb-e716-0410-a449-f6a68f950b19 --- src/as/com/threerings/flex/ChatControl.as | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/as/com/threerings/flex/ChatControl.as b/src/as/com/threerings/flex/ChatControl.as index bceba073..3e0f4a9c 100644 --- a/src/as/com/threerings/flex/ChatControl.as +++ b/src/as/com/threerings/flex/ChatControl.as @@ -72,6 +72,14 @@ public class ChatControl extends HBox addEventListener(Event.REMOVED_FROM_STAGE, handleAddRemove); } + /** + * Provides access to the text field we use to accept chat. + */ + public function get chatInput () :ChatInput + { + return _txt; + } + /** * Request focus to this chat control. */