summaryrefslogtreecommitdiff
path: root/framework/Base/TEvent.php
diff options
context:
space:
mode:
authorctrlaltca@gmail.com <>2011-06-20 10:48:45 +0000
committerctrlaltca@gmail.com <>2011-06-20 10:48:45 +0000
commit656c339879a071f2f875831281ed833b876e4361 (patch)
treeb6f11d3ad8cb1f61b10b4e3b9fcb0a7d4d30f9e1 /framework/Base/TEvent.php
parent0956370d34e2eefd0b5e556a6aaca6297ce1e3ce (diff)
removed useless calls to empty contructor; reverted some additional undocumented changes; upported the "cgi workaround" to trunk/; large (fake) changeset are due to mixed cr/crlf used previously
Diffstat (limited to 'framework/Base/TEvent.php')
-rw-r--r--framework/Base/TEvent.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/framework/Base/TEvent.php b/framework/Base/TEvent.php
index 5116a5f4..0f64e89d 100644
--- a/framework/Base/TEvent.php
+++ b/framework/Base/TEvent.php
@@ -1,6 +1,6 @@
<?php
/**
- * TEvent is the base class for all event classes.
+ * CEvent is the base class for all event classes.
*
* It encapsulates the parameters associated with an event.
* The {@link sender} property describes who raises the event.
@@ -9,7 +9,7 @@
* that are not invoked yet will not be invoked anymore.
*
* @author Qiang Xue <qiang.xue@gmail.com>
- * @version $Id: TEvent.php 978 2009-05-06 03:36:09Z qiang.xue $
+ * @version $Id: CComponent.php 978 2009-05-06 03:36:09Z qiang.xue $
* @package system.base
* @since 1.0
*/
@@ -31,8 +31,6 @@ class TEvent extends TComponent
*/
public function __construct($sender=null)
{
- parent::__construct();
-
$this->sender=$sender;
}
} \ No newline at end of file