summaryrefslogtreecommitdiff
path: root/cocoa/LocalHistoryController.h
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/LocalHistoryController.h')
-rw-r--r--cocoa/LocalHistoryController.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/cocoa/LocalHistoryController.h b/cocoa/LocalHistoryController.h
index d84ab8317..14a9abcdb 100644
--- a/cocoa/LocalHistoryController.h
+++ b/cocoa/LocalHistoryController.h
@@ -19,18 +19,20 @@
#import <Cocoa/Cocoa.h>
@class HistoryView;
+@class BrowserView;
@interface LocalHistoryController : NSWindowController {
HistoryView *history;
- struct browser_window *browser;
+ BrowserView *browser;
}
-@property (readwrite, assign, nonatomic) struct browser_window *browser;
+@property (readwrite, assign, nonatomic) BrowserView *browser;
@property (readwrite, assign, nonatomic) IBOutlet HistoryView *history;
-- initWithBrowser: (struct browser_window *) bw;
+- initWithBrowser: (BrowserView *) bw;
- (void) attachToView: (NSView *) view;
- (void) detach;
+- (void) redraw;
@end