summaryrefslogtreecommitdiffstats
path: root/codebase/Dhtmlx/Connector/GridConnector.php
diff options
context:
space:
mode:
Diffstat (limited to 'codebase/Dhtmlx/Connector/GridConnector.php')
-rw-r--r--codebase/Dhtmlx/Connector/GridConnector.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/codebase/Dhtmlx/Connector/GridConnector.php b/codebase/Dhtmlx/Connector/GridConnector.php
index b25a95a..d912f4f 100644
--- a/codebase/Dhtmlx/Connector/GridConnector.php
+++ b/codebase/Dhtmlx/Connector/GridConnector.php
@@ -1,6 +1,6 @@
<?php
-namespace DHTMLX\Connector;
+namespace Dhtmlx\Connector;
/*! Connector for the dhtmlxgrid
**/
class GridConnector extends Connector{
@@ -18,9 +18,9 @@ class GridConnector extends Connector{
name of class which will be used for dataprocessor calls handling, optional, DataProcessor class will be used by default.
*/
public function __construct($res,$type=false,$item_type=false,$data_type=false,$render_type=false){
- if (!$item_type) $item_type="DHTMLX\\Connector\\GridDataItem";
- if (!$data_type) $data_type="DHTMLX\\Connector\\Data\\GridDataProcessor";
- if (!$render_type) $render_type="DHTMLX\\Connector\\Output\\RenderStrategy";
+ if (!$item_type) $item_type="Dhtmlx\\Connector\\GridDataItem";
+ if (!$data_type) $data_type="Dhtmlx\\Connector\\Data\\GridDataProcessor";
+ if (!$render_type) $render_type="Dhtmlx\\Connector\\Output\\RenderStrategy";
parent::__construct($res,$type,$item_type,$data_type,$render_type);
}