summaryrefslogtreecommitdiff
path: root/cocoa
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-01-13 22:54:19 +0000
committerVincent Sanders <vince@kyllikki.org>2014-01-13 22:54:19 +0000
commitd18c8ed4521714c3fff3cca64685b8192ca0e075 (patch)
tree292ebb4a9f4f39ed8a61a33de4c8b169416214e5 /cocoa
parente82d83f1847ebc369a5f48a18217a8f5fecf3824 (diff)
downloadnetsurf-d18c8ed4521714c3fff3cca64685b8192ca0e075.tar.gz
netsurf-d18c8ed4521714c3fff3cca64685b8192ca0e075.tar.bz2
move teh final optional window operations into the table
Diffstat (limited to 'cocoa')
-rw-r--r--cocoa/gui.m15
-rw-r--r--cocoa/selection.m9
2 files changed, 0 insertions, 24 deletions
diff --git a/cocoa/gui.m b/cocoa/gui.m
index 59d823d96..40dc8e191 100644
--- a/cocoa/gui.m
+++ b/cocoa/gui.m
@@ -250,15 +250,6 @@ static void gui_window_new_content(struct gui_window *g)
[(BrowserViewController *)g contentUpdated];
}
-void gui_drag_save_object(gui_save_type type, hlcache_handle *c,
- struct gui_window *g)
-{
-}
-
-void gui_drag_save_selection(struct gui_window *g, const char *selection)
-{
-}
-
void gui_create_form_select_menu(struct browser_window *bw,
struct form_control *control)
@@ -289,12 +280,6 @@ void gui_401login_open(nsurl *url, const char *realm,
cb( false, cbpw );
}
-void gui_file_gadget_open(struct gui_window *g, hlcache_handle *hl,
- struct form_control *gadget)
-{
- LOG(("File open dialog rquest for %p/%p", g, gadget));
- /* browser_window_set_gadget_filename(bw, gadget, "filename"); */
-}
static struct gui_window_table cocoa_window_table = {
.create = gui_window_create,
diff --git a/cocoa/selection.m b/cocoa/selection.m
index 237c61ce2..daa64bf08 100644
--- a/cocoa/selection.m
+++ b/cocoa/selection.m
@@ -25,15 +25,6 @@
static NSMutableString *cocoa_clipboard_string;
-void gui_start_selection(struct gui_window *g)
-{
-}
-
-void gui_clear_selection(struct gui_window *g)
-{
-}
-
-
/**
* Core asks front end for clipboard contents.
*