summaryrefslogtreecommitdiff
path: root/cocoa
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa')
-rw-r--r--cocoa/BookmarksController.m2
-rw-r--r--cocoa/Tree.h1
-rw-r--r--cocoa/Tree.m5
3 files changed, 1 insertions, 7 deletions
diff --git a/cocoa/BookmarksController.m b/cocoa/BookmarksController.m
index 96041ab7b..2f8d9d839 100644
--- a/cocoa/BookmarksController.m
+++ b/cocoa/BookmarksController.m
@@ -164,7 +164,7 @@ static const char *cocoa_hotlist_path( void )
{
struct browser_window *bw = [[(NetSurfApp *)NSApp frontTab] browser];
if (bw && bw->current_content) {
- hotlist_add_url( nsurl_access(hlcache_handle_get_url( bw->current_content )) );
+ hotlist_add_url( hlcache_handle_get_url( bw->current_content ) );
}
}
diff --git a/cocoa/Tree.h b/cocoa/Tree.h
index e38df5a99..fbdb7f70e 100644
--- a/cocoa/Tree.h
+++ b/cocoa/Tree.h
@@ -38,7 +38,6 @@
}
@property (readwrite, assign, nonatomic) id <TreeDelegate> delegate;
-@property (readwrite, assign, nonatomic, getter=isRedrawing) BOOL redrawing;
- initWithFlags: (unsigned int) flags;
diff --git a/cocoa/Tree.m b/cocoa/Tree.m
index 7da7b681c..5e0247ad7 100644
--- a/cocoa/Tree.m
+++ b/cocoa/Tree.m
@@ -64,11 +64,6 @@ static const struct treeview_table cocoa_tree_callbacks = {
return tree;
}
-- (BOOL) isRedrawing;
-{
- return tree_get_redraw( tree );
-}
-
- (void) setRedrawing: (BOOL) newRedrawing;
{
}