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,6 +11,9 @@ function views_tree_views_api() {
   );
 }
 
+/**
+ * Implements hook_theme().
+ */
 function views_tree_theme($existing, $type, $theme, $path) {
   return array(
     'views_tree_inner' => array(
Index: views_tree.views.inc
===================================================================
--- views_tree.views.inc	(revision 90)
+++ views_tree.views.inc	(working copy)
@@ -1,9 +1,12 @@
 <?php
+// $Id$
 
 /**
  * Implementation of hook_views_plugins()
  */
 function views_tree_views_plugins() {
+  $path = drupal_get_path('module', 'views_tree');
+
   return array(
     'style' => array(
       'tree' => array(
@@ -17,7 +20,8 @@ function views_tree_views_plugins() {
         'uses grouping'   => FALSE,
         'type'            => 'normal',
         'parent'          => 'list',
-        //'theme file'      => 'views_tree.theme.inc',
+        'theme path' => $path,
+        'theme file' => 'views_tree.theme.inc',
       ),
     ),
   );
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.
