summaryrefslogtreecommitdiff
path: root/cocoa/TreeView.h
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/TreeView.h')
-rw-r--r--cocoa/TreeView.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/cocoa/TreeView.h b/cocoa/TreeView.h
index 3e6f18496..31dedbb0f 100644
--- a/cocoa/TreeView.h
+++ b/cocoa/TreeView.h
@@ -19,13 +19,16 @@
#import <Cocoa/Cocoa.h>
#import "cocoa/ScrollableView.h"
+@class Tree;
@interface TreeView : ScrollableView {
- struct tree *treeHandle;
+ Tree *tree;
BOOL isDragging;
NSPoint dragStart;
}
+@property (readwrite, retain, nonatomic) Tree *tree;
+
@end