summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-01-12 22:55:26 +0000
committerVincent Sanders <vince@kyllikki.org>2014-01-12 22:55:26 +0000
commit4b49b4ac775a1e3ca0c59f390f3f2427e31bce2b (patch)
tree311a26dd1e0d387172cfd28d83a6e92b6d2538f4 /windows
parentb7736bae2f37675be55b1c89d33b03e8603b2946 (diff)
downloadnetsurf-4b49b4ac775a1e3ca0c59f390f3f2427e31bce2b.tar.gz
netsurf-4b49b4ac775a1e3ca0c59f390f3f2427e31bce2b.tar.bz2
move more optional window operations into table including removing unused hide_pointer operation altogether
Diffstat (limited to 'windows')
-rw-r--r--windows/gui.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/windows/gui.c b/windows/gui.c
index 74ad173ee..6e04e3e97 100644
--- a/windows/gui.c
+++ b/windows/gui.c
@@ -1543,12 +1543,6 @@ void gui_window_set_scroll(struct gui_window *w, int sx, int sy)
}
-void gui_window_scroll_visible(struct gui_window *w, int x0, int y0,
- int x1, int y1)
-{
- LOG(("scroll visible (%p, %d, %d, %d, %d)", w, x0, y0, x1, y1));
-}
-
void gui_window_get_dimensions(struct gui_window *w, int *width, int *height,
bool scaled)
{
@@ -1650,10 +1644,6 @@ struct nsws_pointers *nsws_get_pointers(void)
return &nsws_pointer;
}
-void gui_window_hide_pointer(struct gui_window *w)
-{
-}
-
static void gui_window_set_url(struct gui_window *w, const char *url)
{
if (w == NULL)
@@ -1737,17 +1727,6 @@ gui_window_remove_caret(struct gui_window *w)
HideCaret(w->drawingarea);
}
-
-void gui_window_new_content(struct gui_window *w)
-{
-}
-
-bool gui_window_scroll_start(struct gui_window *w)
-{
- return true;
-}
-
-
void gui_drag_save_object(gui_save_type type, hlcache_handle *c,
struct gui_window *w)
{