comparison src/widget.c @ 12672:63201a2c1247

Do renamings: frame->display => frame->output, struct x_display -> struct x_output.
author Karl Heuer <kwzh@gnu.org>
date Wed, 26 Jul 1995 00:04:12 +0000
parents f6386ce0011c
children 621a575db6f7
comparison
equal deleted inserted replaced
12671:f6386ce0011c 12672:63201a2c1247
628 628
629 static void 629 static void
630 update_various_frame_slots (ew) 630 update_various_frame_slots (ew)
631 EmacsFrame ew; 631 EmacsFrame ew;
632 { 632 {
633 struct x_display* x = ew->emacs_frame.frame->output_data.x; 633 struct x_output *x = ew->emacs_frame.frame->output_data.x;
634 x->pixel_height = ew->core.height; 634 x->pixel_height = ew->core.height;
635 x->pixel_width = ew->core.width; 635 x->pixel_width = ew->core.width;
636 x->internal_border_width = ew->emacs_frame.internal_border_width; 636 x->internal_border_width = ew->emacs_frame.internal_border_width;
637 637
638 } 638 }
639 639
640 static void 640 static void
641 update_from_various_frame_slots (ew) 641 update_from_various_frame_slots (ew)
642 EmacsFrame ew; 642 EmacsFrame ew;
643 { 643 {
644 struct x_display* x = ew->emacs_frame.frame->output_data.x; 644 struct x_output *x = ew->emacs_frame.frame->output_data.x;
645 ew->core.height = x->pixel_height; 645 ew->core.height = x->pixel_height;
646 ew->core.width = x->pixel_width; 646 ew->core.width = x->pixel_width;
647 ew->core.background_pixel = x->background_pixel; 647 ew->core.background_pixel = x->background_pixel;
648 ew->emacs_frame.internal_border_width = x->internal_border_width; 648 ew->emacs_frame.internal_border_width = x->internal_border_width;
649 ew->emacs_frame.font = x->font; 649 ew->emacs_frame.font = x->font;