summaryrefslogtreecommitdiff
path: root/cocoa/gui.m
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-01-14 12:46:06 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-01-14 12:46:06 +0000
commitecc314c694d3fa735855d10d57770ba447332816 (patch)
tree4db9b7f55005b4196c45316981d60a7b31af0bb2 /cocoa/gui.m
parent633f294ce29be6b40c2c4cb865120d1771c81c67 (diff)
downloadnetsurf-ecc314c694d3fa735855d10d57770ba447332816.tar.gz
netsurf-ecc314c694d3fa735855d10d57770ba447332816.tar.bz2
Implemented download window
svn path=/trunk/netsurf/; revision=11317
Diffstat (limited to 'cocoa/gui.m')
-rw-r--r--cocoa/gui.m29
1 files changed, 0 insertions, 29 deletions
diff --git a/cocoa/gui.m b/cocoa/gui.m
index 363961dc4..09c80c7b2 100644
--- a/cocoa/gui.m
+++ b/cocoa/gui.m
@@ -252,33 +252,6 @@ void gui_window_set_scale(struct gui_window *g, float scale)
gui_window_redraw_window( g );
}
-
-struct gui_download_window *gui_download_window_create(download_context *ctx,
- struct gui_window *parent)
-{
- UNIMPL();
- return NULL;
-}
-
-nserror gui_download_window_data(struct gui_download_window *dw,
- const char *data, unsigned int size)
-{
- UNIMPL();
- return 0;
-}
-
-void gui_download_window_error(struct gui_download_window *dw,
- const char *error_msg)
-{
- UNIMPL();
-}
-
-void gui_download_window_done(struct gui_download_window *dw)
-{
- UNIMPL();
-}
-
-
void gui_drag_save_object(gui_save_type type, hlcache_handle *c,
struct gui_window *g)
{
@@ -338,8 +311,6 @@ void gui_launch_url(const char *url)
[[NSWorkspace sharedWorkspace] openURL: [NSURL URLWithString: [NSString stringWithUTF8String: url]]];
}
-
-
struct ssl_cert_info;
void gui_cert_verify(const char *url, const struct ssl_cert_info *certs,