summaryrefslogtreecommitdiff
path: root/framework/Data
diff options
context:
space:
mode:
authorxue <>2006-02-17 05:19:25 +0000
committerxue <>2006-02-17 05:19:25 +0000
commit7b38480de52c1d042ea542e2d06913a8c9b645fc (patch)
tree67ff025fb171a5325ac8fdc75a281ce8a19a2bd5 /framework/Data
parentae1c1995b2fec431afe7cca23b2697e1bef17baf (diff)
Add TApplicationComponent class and adjusted the relevant classes.
Diffstat (limited to 'framework/Data')
-rw-r--r--framework/Data/TXmlDocument.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/Data/TXmlDocument.php b/framework/Data/TXmlDocument.php
index dfd65ebe..bb22b254 100644
--- a/framework/Data/TXmlDocument.php
+++ b/framework/Data/TXmlDocument.php
@@ -55,6 +55,7 @@ class TXmlElement extends TComponent
*/
public function __construct($tagName)
{
+ parent::__construct();
$this->setTagName($tagName);
}
@@ -403,6 +404,7 @@ class TXmlElementList extends TList
*/
public function __construct(TXmlElement $owner)
{
+ parent::__construct();
$this->_o=$owner;
}