aboutsummaryrefslogtreecommitdiffstats
path: root/src/widget.c
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>1999-08-21 19:30:35 +0000
committerGerd Moellmann <[email protected]>1999-08-21 19:30:35 +0000
commit2b6538062cc74db6e18f6dce36721b93d3d32924 (patch)
tree9eff08051a410f9e18106693f5d4aa52a1d7f86f /src/widget.c
parent0788646cc2f1b65a6aabf8a2a9b0fa3488e0f560 (diff)
Call change_frame_size and do_pending_window_change with
new parameter.
Diffstat (limited to 'src/widget.c')
-rw-r--r--src/widget.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widget.c b/src/widget.c
index 447fc260e0..2ab11fa1a5 100644
--- a/src/widget.c
+++ b/src/widget.c
@@ -448,7 +448,7 @@ set_frame_size (ew)
frame->output_data.x->flags_areas_extra
= 2 * FRAME_FLAGS_AREA_WIDTH (frame);
- change_frame_size (frame, h, w, 1, 0);
+ change_frame_size (frame, h, w, 1, 0, 0);
char_to_pixel_size (ew, w, h, &pixel_width, &pixel_height);
ew->core.width = pixel_width;
ew->core.height = pixel_height;
@@ -783,7 +783,7 @@ EmacsFrameResize (widget)
int rows;
pixel_to_char_size (ew, ew->core.width, ew->core.height, &columns, &rows);
- change_frame_size (f, rows, columns, 0, 1);
+ change_frame_size (f, rows, columns, 0, 1, 0);
update_wm_hints (ew);
update_various_frame_slots (ew);
@@ -841,7 +841,7 @@ EmacsFrameSetValues (cur_widget, req_widget, new_widget, dum1, dum2)
new->core.height = pixel_height;
change_frame_size (new->emacs_frame.frame, char_height, char_width,
- 1, 0);
+ 1, 0, 0);
needs_a_refresh = True;
}