diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-07-26 00:04:12 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-07-26 00:04:12 +0000 |
commit | 5febf3ba6964a78dbcb92bac24c888d1c6694cd6 (patch) | |
tree | 0f54575d833623bd5cadcc7be32f92a92f8f00b2 /src/widget.c | |
parent | 9def7dfa506a460a95bea11699483926f4fe0a8e (diff) | |
download | emacs-5febf3ba6964a78dbcb92bac24c888d1c6694cd6.tar.gz |
Do renamings:
frame->display => frame->output, struct x_display -> struct x_output.
Diffstat (limited to 'src/widget.c')
-rw-r--r-- | src/widget.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widget.c b/src/widget.c index 2c0dc6e2172..5c46e99ac80 100644 --- a/src/widget.c +++ b/src/widget.c @@ -630,7 +630,7 @@ static void update_various_frame_slots (ew) EmacsFrame ew; { - struct x_display* x = ew->emacs_frame.frame->output_data.x; + struct x_output *x = ew->emacs_frame.frame->output_data.x; x->pixel_height = ew->core.height; x->pixel_width = ew->core.width; x->internal_border_width = ew->emacs_frame.internal_border_width; @@ -641,7 +641,7 @@ static void update_from_various_frame_slots (ew) EmacsFrame ew; { - struct x_display* x = ew->emacs_frame.frame->output_data.x; + struct x_output *x = ew->emacs_frame.frame->output_data.x; ew->core.height = x->pixel_height; ew->core.width = x->pixel_width; ew->core.background_pixel = x->background_pixel; |