diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2013-07-31 16:50:59 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2013-07-31 16:50:59 +0400 |
commit | f435830ea42db6073ed8714452dae302a3c855c5 (patch) | |
tree | 439809f2d9947708019f4be567365f80e11e5598 /src/w32term.h | |
parent | 2412ee1af63c6cc8f4a85919cc78e59cb6ec83e3 (diff) |
Drop unnecessary functions that deals with frame pixel size.
* frame.h, msdos.h, w32term.h, xterm.h (x_pixel_width)
(x_pixel_height): Drop prototypes.
* msdos.c, nsfns.m, w32fns.c, xfns.c (x_pixel_width)
(x_pixel_height): Drop implementations.
* frame.c (Fframe_pixel_height): Use FRAME_PIXEL_HEIGHT
which should be always valid for window frame.
(Frame_pixel_width): Likewise with FRAME_PIXEL_WIDTH.
* w32menu.c (Fx_popup_dialog):
* xmenu.c (Fx_popup_dialog): Likewise for both.
Diffstat (limited to 'src/w32term.h')
-rw-r--r-- | src/w32term.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/w32term.h b/src/w32term.h index ace5875830..032047a275 100644 --- a/src/w32term.h +++ b/src/w32term.h @@ -218,8 +218,6 @@ extern void x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y); extern void x_make_frame_visible (struct frame *f); extern void x_make_frame_invisible (struct frame *f); extern void x_iconify_frame (struct frame *f); -extern int x_pixel_width (struct frame *f); -extern int x_pixel_height (struct frame *f); extern void x_set_frame_alpha (struct frame *f); extern void x_set_menu_bar_lines (struct frame *, Lisp_Object, Lisp_Object); extern void x_set_tool_bar_lines (struct frame *f, |