summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Klaer <kj.landwehr.software@gmail.com>2016-04-20 07:50:01 +0200
committerJens Klaer <kj.landwehr.software@gmail.com>2016-04-20 07:50:01 +0200
commit9aaf170b827af676bfafca6609e74c2e4307d9f1 (patch)
treef3fc21a1f79e4ad3f2ed9571ae6800ec8ece27ff
parent2204872a35179649537864d31daba620094f3b03 (diff)
Constructor parent call to allow TStyle behaviors
-rw-r--r--framework/Web/UI/WebControls/TStyle.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/framework/Web/UI/WebControls/TStyle.php b/framework/Web/UI/WebControls/TStyle.php
index f6d91e9b..799af518 100644
--- a/framework/Web/UI/WebControls/TStyle.php
+++ b/framework/Web/UI/WebControls/TStyle.php
@@ -73,6 +73,7 @@ class TStyle extends TComponent
*/
public function __construct($style=null)
{
+ parent::__construct();
if($style!==null)
$this->copyFrom($style);
}