summaryrefslogtreecommitdiff
path: root/frontends/cocoa/NetsurfApp.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/NetsurfApp.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/NetsurfApp.h')
-rw-r--r--frontends/cocoa/NetsurfApp.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/frontends/cocoa/NetsurfApp.h b/frontends/cocoa/NetsurfApp.h
index 330f33826..ea2802aee 100644
--- a/frontends/cocoa/NetsurfApp.h
+++ b/frontends/cocoa/NetsurfApp.h
@@ -20,11 +20,9 @@
@class BrowserViewController;
-@interface NetSurfApp : NSApplication {
- BrowserViewController *frontTab;
-}
+@interface NetSurfApp : NSApplication
-@property (readwrite, assign, nonatomic) BrowserViewController *frontTab;
+@property (readwrite, nonatomic) BrowserViewController *frontTab;
@end