summaryrefslogtreecommitdiff
path: root/desktop/frames.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2012-08-16 15:43:14 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2012-08-16 15:43:14 +0100
commit7277ce5dfc981394047bb865ceaf3a37fc33ccd6 (patch)
tree08229d1bf6ba81c4b7cd4934d92d2681127ea1b5 /desktop/frames.c
parent83c8e940f80368771eb499f8fbea6abafe04cd67 (diff)
downloadnetsurf-7277ce5dfc981394047bb865ceaf3a37fc33ccd6.tar.gz
netsurf-7277ce5dfc981394047bb865ceaf3a37fc33ccd6.tar.bz2
Remove redundant "action" param.
Diffstat (limited to 'desktop/frames.c')
-rw-r--r--desktop/frames.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/desktop/frames.c b/desktop/frames.c
index da9a7dcf2..4d3844087 100644
--- a/desktop/frames.c
+++ b/desktop/frames.c
@@ -796,8 +796,7 @@ bool browser_window_resolve_frame_dimension(struct browser_window *bw,
bool browser_window_resize_frames(struct browser_window *bw,
browser_mouse_state mouse, int x, int y,
- gui_pointer_shape *pointer,
- bool *action) {
+ gui_pointer_shape *pointer) {
struct browser_window *parent;
bool left, right, up, down;
int i, resize_margin;
@@ -896,8 +895,6 @@ bool browser_window_resize_frames(struct browser_window *bw,
bw->drag_resize_right = right;
bw->drag_resize_up = up;
bw->drag_resize_down = down;
-
- *action = true;
}
return true;
}
@@ -906,13 +903,13 @@ bool browser_window_resize_frames(struct browser_window *bw,
if (bw->children) {
for (i = 0; i < (bw->cols * bw->rows); i++)
if (browser_window_resize_frames(&bw->children[i],
- mouse, x, y, pointer, action))
+ mouse, x, y, pointer))
return true;
}
if (bw->iframes) {
for (i = 0; i < bw->iframe_count; i++)
if (browser_window_resize_frames(&bw->iframes[i],
- mouse, x, y, pointer, action))
+ mouse, x, y, pointer))
return true;
}
return false;