Index: views_tree.module
===================================================================
--- views_tree.module	(revision 90)
+++ views_tree.module	(working copy)
@@ -1,7 +1,8 @@
 <?php
+// $Id$
 
 /**
- * Implementation of hook_views_api().
+ * Implements hook_views_api().
  */
 function views_tree_views_api() {
   return array(
@@ -10,8 +11,24 @@ function views_tree_views_api() {
   );
 }
 
-function views_tree_theme($existing, $type, $theme, $path) {
+/**
+ * Implements hook_theme().
+ */
+function views_tree_theme() {
+  $path = drupal_get_path('module', 'views_tree');
+  require_once "./$path/views_tree.theme.inc";
+
   return array(
+    'views_tree' => array(
+      'arguments' => array(
+        'view' => NULL,
+        'options' => array(),
+        'rows' => array(),
+        'title' => NULL,
+      ),
+      'path' => $path,
+      'file' => 'views_tree.theme.inc',
+    ),
     'views_tree_inner' => array(
       'arguments' => array(
         'view' => NULL,
@@ -21,6 +38,7 @@ function views_tree_theme($existing, $ty
         'result' => array(),
         'parent' => NULL,
       ),
+      'path' => $path,
       'file' => 'views_tree.theme.inc',
     ),
   );
Index: views_tree.views.inc
===================================================================
--- views_tree.views.inc	(revision 90)
+++ views_tree.views.inc	(working copy)
@@ -1,4 +1,5 @@
 <?php
+// $Id$
 
 /**
  * Implementation of hook_views_plugins()
Index: views_tree_plugin_style_tree.inc
===================================================================
--- views_tree_plugin_style_tree.inc	(revision 90)
+++ views_tree_plugin_style_tree.inc	(working copy)
@@ -1,4 +1,5 @@
 <?php
+// $Id$
 
 /**
  * @file
Index: views_tree.theme.inc
===================================================================
--- views_tree.theme.inc	(revision 90)
+++ views_tree.theme.inc	(working copy)
@@ -1,4 +1,5 @@
 <?php
+// $Id$
 
 /**
  * Theme function for the tree style plugin.
