From 28ff0cfb0af7d58244dfd06546b2c8ec37f01c75 Mon Sep 17 00:00:00 2001 From: Sven Weidauer Date: Tue, 1 Feb 2011 08:39:32 +0000 Subject: Factored Tree class out of TreeView svn path=/trunk/netsurf/; revision=11577 --- cocoa/TreeView.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'cocoa/TreeView.h') 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 #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 -- cgit v1.2.3