From 01bc363ac789cfb9d644ce82a949da5cd7e1c220 Mon Sep 17 00:00:00 2001 From: xue <> Date: Tue, 31 Jan 2006 00:01:49 +0000 Subject: Modified TList and TMap implementation so that they can be more easily extended. --- framework/TComponent.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'framework/TComponent.php') diff --git a/framework/TComponent.php b/framework/TComponent.php index cc5fa1b5..6641fd1a 100644 --- a/framework/TComponent.php +++ b/framework/TComponent.php @@ -300,12 +300,12 @@ class TComponent * getting and setting properties, e.g., * * $component->OnClick[]=array($object,'buttonClicked'); - * $component->OnClick->insert(0,array($object,'buttonClicked')); + * $component->OnClick->insertAt(0,array($object,'buttonClicked')); * * which are equivalent to the following * * $component->getEventHandlers('OnClick')->add(array($object,'buttonClicked')); - * $component->getEventHandlers('OnClick')->insert(0,array($object,'buttonClicked')); + * $component->getEventHandlers('OnClick')->insertAt(0,array($object,'buttonClicked')); * * * @param string the event name -- cgit v1.2.3