summaryrefslogtreecommitdiff
path: root/framework/TComponent.php
diff options
context:
space:
mode:
authorDavid <ottodavid@gmx.net>2015-08-10 19:50:41 +0200
committerDavid <ottodavid@gmx.net>2015-08-11 08:34:39 +0200
commit606874e9a883ae547df198498fce6fca7b735466 (patch)
tree2f9e772926ee22e715411e79acd8e0adfe1de2cd /framework/TComponent.php
parentac81ab6d556ce52e98acf636bbcd8ad4d60ecf4e (diff)
Fix TProperyValue::ensureEnum and some unit tests class names
Diffstat (limited to 'framework/TComponent.php')
-rw-r--r--framework/TComponent.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/TComponent.php b/framework/TComponent.php
index 447f695e..5d31df91 100644
--- a/framework/TComponent.php
+++ b/framework/TComponent.php
@@ -432,7 +432,7 @@ class TComponent
foreach($fx as $func)
$this->attachEventHandler($func,array($this,$func));
- if(is_a($this,'IDynamicMethods')) {
+ if(is_a($this,'Prado\\Util\\IDynamicMethods')) {
$this->attachEventHandler(TComponent::GLOBAL_RAISE_EVENT_LISTENER,array($this,'__dycall'));
array_push($fx,TComponent::GLOBAL_RAISE_EVENT_LISTENER);
}
@@ -466,7 +466,7 @@ class TComponent
foreach($fx as $func)
$this->detachEventHandler($func,array($this,$func));
- if(is_a($this,'IDynamicMethods')) {
+ if(is_a($this,'Prado\\Util\\IDynamicMethods')) {
$this->detachEventHandler(TComponent::GLOBAL_RAISE_EVENT_LISTENER,array($this,'__dycall'));
array_push($fx,TComponent::GLOBAL_RAISE_EVENT_LISTENER);
}