Mercurial > hg > xemacs-beta
comparison src/frame-gtk.c @ 5128:7be849cb8828 ben-lisp-object
merge
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Sun, 07 Mar 2010 02:09:59 -0600 |
parents | a9c41067dd88 0ca81354c4c7 |
children | 97eb4942aec8 |
comparison
equal
deleted
inserted
replaced
5127:a9c41067dd88 | 5128:7be849cb8828 |
---|---|
631 /* set the position of the frame's root window now. When the | 631 /* set the position of the frame's root window now. When the |
632 frame was created, the position was initialized to (0,0). */ | 632 frame was created, the position was initialized to (0,0). */ |
633 { | 633 { |
634 struct window *win = XWINDOW (f->root_window); | 634 struct window *win = XWINDOW (f->root_window); |
635 | 635 |
636 WINDOW_LEFT (win) = FRAME_LEFT_BORDER_END (f); | 636 WINDOW_LEFT (win) = FRAME_PANED_LEFT_EDGE (f); |
637 WINDOW_TOP (win) = FRAME_TOP_BORDER_END (f); | 637 WINDOW_TOP (win) = FRAME_PANED_TOP_EDGE (f); |
638 | 638 |
639 if (!NILP (f->minibuffer_window)) | 639 if (!NILP (f->minibuffer_window)) |
640 { | 640 { |
641 win = XWINDOW (f->minibuffer_window); | 641 win = XWINDOW (f->minibuffer_window); |
642 WINDOW_LEFT (win) = FRAME_LEFT_BORDER_END (f); | 642 WINDOW_LEFT (win) = FRAME_PANED_LEFT_EDGE (f); |
643 } | 643 } |
644 } | 644 } |
645 | 645 |
646 gtk_set_initial_frame_size (f, x, y, w, h); | 646 gtk_set_initial_frame_size (f, x, y, w, h); |
647 } | 647 } |