summaryrefslogtreecommitdiff
path: root/frontends/cocoa/HistoryWindowController.h
diff options
context:
space:
mode:
authorSven Weidauer <sven@5sw.de>2017-06-05 10:47:34 +0200
committerSven Weidauer <sven@5sw.de>2017-06-05 10:51:19 +0200
commit3ee40a10b123c36be3e29602767840a7a71aaafa (patch)
tree64123d0bf6a6cf5a5a4c1fd8349756db68e09483 /frontends/cocoa/HistoryWindowController.h
parentce4e059ea67cee7f35b4b810a4387f343fa74650 (diff)
downloadnetsurf-3ee40a10b123c36be3e29602767840a7a71aaafa.tar.gz
netsurf-3ee40a10b123c36be3e29602767840a7a71aaafa.tar.bz2
Fix up cocoa frontend.
- Convert to ARC - Fix crash due to endless responder chain recursion - Update makefile to find openssl installed via home-brew - Fix most compiler warnings
Diffstat (limited to 'frontends/cocoa/HistoryWindowController.h')
-rw-r--r--frontends/cocoa/HistoryWindowController.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontends/cocoa/HistoryWindowController.h b/frontends/cocoa/HistoryWindowController.h
index 30ba8049a..3b1d97679 100644
--- a/frontends/cocoa/HistoryWindowController.h
+++ b/frontends/cocoa/HistoryWindowController.h
@@ -23,9 +23,8 @@
@interface HistoryWindowController : NSWindowController {
Tree *tree;
- TreeView *view;
}
-@property (readwrite, assign, nonatomic) IBOutlet TreeView *view;
+@property (readwrite, nonatomic) IBOutlet TreeView *view;
@end