diff options
Diffstat (limited to 'codebase/Dhtmlx/Connector/TreeConnector.php')
-rwxr-xr-x[-rw-r--r--] | codebase/Dhtmlx/Connector/TreeConnector.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/codebase/Dhtmlx/Connector/TreeConnector.php b/codebase/Dhtmlx/Connector/TreeConnector.php index 886d68d..1b9a7cb 100644..100755 --- a/codebase/Dhtmlx/Connector/TreeConnector.php +++ b/codebase/Dhtmlx/Connector/TreeConnector.php @@ -21,9 +21,9 @@ class TreeConnector extends Connector { */ public function __construct($res, $type = false, $item_type = false, $data_type = false, $render_type = false) { - if (!$item_type) $item_type = "TreeDataItem"; - if (!$data_type) $data_type = "TreeDataProcessor"; - if (!$render_type) $render_type = "TreeRenderStrategy"; + if (!$item_type) $item_type = "Dhtmlx\\Connector\\Data\\TreeDataItem"; + if (!$data_type) $data_type = "Dhtmlx\\Connector\\DataProcessor\\TreeDataProcessor"; + if (!$render_type) $render_type = "Dhtmlx\\Connector\\Output\\TreeRenderStrategy"; parent::__construct($res, $type, $item_type, $data_type, $render_type); } |