summaryrefslogtreecommitdiff
path: root/cocoa/LocalHistoryController.m
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/LocalHistoryController.m')
-rw-r--r--cocoa/LocalHistoryController.m7
1 files changed, 6 insertions, 1 deletions
diff --git a/cocoa/LocalHistoryController.m b/cocoa/LocalHistoryController.m
index 0e90b92c0..94d70d34e 100644
--- a/cocoa/LocalHistoryController.m
+++ b/cocoa/LocalHistoryController.m
@@ -26,7 +26,7 @@
@synthesize browser;
@synthesize history;
-- initWithBrowser: (struct browser_window *) bw;
+- initWithBrowser: (BrowserView *) bw;
{
if ((self = [super initWithWindowNibName: @"LocalHistoryPanel"]) == nil) return nil;
@@ -102,4 +102,9 @@
[history setBrowser: browser];
}
+- (void) redraw;
+{
+ [history setNeedsDisplay: YES];
+}
+
@end