summaryrefslogtreecommitdiff
path: root/cocoa
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-09-02 14:39:04 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2013-09-02 14:39:04 +0100
commit9f35fd3fee6279f0bcd4fa0b3758548bbceaf1ab (patch)
treed589c3fd6e28b098a831816695d463e3493ced0c /cocoa
parent128fdbec438f951348eb70829ab90b423e271d66 (diff)
downloadnetsurf-9f35fd3fee6279f0bcd4fa0b3758548bbceaf1ab.tar.gz
netsurf-9f35fd3fee6279f0bcd4fa0b3758548bbceaf1ab.tar.bz2
Use TREE_HISTORY directly.
Diffstat (limited to 'cocoa')
-rw-r--r--cocoa/HistoryWindowController.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/HistoryWindowController.m b/cocoa/HistoryWindowController.m
index 94fb2979e..436f786d2 100644
--- a/cocoa/HistoryWindowController.m
+++ b/cocoa/HistoryWindowController.m
@@ -30,7 +30,7 @@
{
if ((self = [super initWithWindowNibName: @"HistoryWindow"]) == nil) return nil;
- tree = [[Tree alloc] initWithFlags: history_global_get_tree_flags()];
+ tree = [[Tree alloc] initWithFlags: TREE_HISTORY];
history_global_initialise( [tree tree], "directory.png" );
return self;