summaryrefslogtreecommitdiff
path: root/gtk/window.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2014-01-13 11:38:35 +0000
committerVincent Sanders <vince@netsurf-browser.org>2014-01-13 11:38:35 +0000
commitd70e371cd99d35859b0514884163447fa793738a (patch)
tree0c255ba4ecee52becc72086f48fceea4eb35e90e /gtk/window.c
parent7227c29bbacbc796e9f549cf21e8bd978fde5114 (diff)
downloadnetsurf-d70e371cd99d35859b0514884163447fa793738a.tar.gz
netsurf-d70e371cd99d35859b0514884163447fa793738a.tar.bz2
move two more mandantory window operations to table
Diffstat (limited to 'gtk/window.c')
-rw-r--r--gtk/window.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk/window.c b/gtk/window.c
index e6da490e6..14b9f3f7b 100644
--- a/gtk/window.c
+++ b/gtk/window.c
@@ -988,7 +988,7 @@ static void gui_window_set_scroll(struct gui_window *g, int sx, int sy)
gtk_adjustment_set_value(hadj, x);
}
-void gui_window_update_extent(struct gui_window *g)
+static void gui_window_update_extent(struct gui_window *g)
{
if (!g->bw->current_content)
return;
@@ -1121,7 +1121,7 @@ void gui_drag_save_selection(struct gui_window *g, const char *selection)
}
-void gui_window_get_dimensions(struct gui_window *g, int *width, int *height,
+static void gui_window_get_dimensions(struct gui_window *g, int *width, int *height,
bool scaled)
{
GtkAllocation alloc;
@@ -1179,6 +1179,8 @@ static struct gui_window_table gui_window_table = {
.update = gui_window_update_box,
.get_scroll = gui_window_get_scroll,
.set_scroll = gui_window_set_scroll,
+ .get_dimensions = gui_window_get_dimensions,
+ .update_extent = gui_window_update_extent,
.set_icon = gui_window_set_icon,