* frame.c (x_fullscreen_adjust): Declare var as Display_Info.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 19 Sep 2008 08:44:14 +0000 (08:44 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 19 Sep 2008 08:44:14 +0000 (08:44 +0000)
* w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
  (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.

src/ChangeLog
src/frame.c
src/w32fns.c

index d6254c71cfaf60827efa9f7c6d1b25c428ceb31a..ed40d242b3ea59894863a9252a13cd06cbd2f055 100644 (file)
@@ -1,3 +1,10 @@
+2008-09-19  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
+
+       * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
+       (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
+
 2008-09-19  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * dispextern.h (struct it): Move line_wrap away from the middle of
index 50aae703f534b6c0131d59c9ccd1cce9f4431658..35b6417a71cef3caa8e5b04766cc67dc97e601ed 100644 (file)
@@ -2862,7 +2862,7 @@ x_fullscreen_adjust (f, width, height, top_pos, left_pos)
 {
   int newwidth = FRAME_COLS (f);
   int newheight = FRAME_LINES (f);
-  struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
+  Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
 
   *top_pos = f->top_pos;
   *left_pos = f->left_pos;
index c5c4d5d4688729fd8627dcecdeeb380ec025354a..3f9466c3d99140442e6e17ff80b7b1405e2e4491 100644 (file)
@@ -4628,7 +4628,7 @@ If omitted or nil, that stands for the selected frame's display.  */)
 {
   struct w32_display_info *dpyinfo = check_x_display_info (display);
 
-  return make_number (dpyinfo->width);
+  return make_number (x_display_pixel_width (dpyinfo));
 }
 
 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
@@ -4642,7 +4642,7 @@ If omitted or nil, that stands for the selected frame's display.  */)
 {
   struct w32_display_info *dpyinfo = check_x_display_info (display);
 
-  return make_number (dpyinfo->height);
+  return make_number (x_display_pixel_height (dpyinfo));
 }
 
 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
@@ -5597,8 +5597,8 @@ compute_tip_xy (f, parms, dx, dy, width, height, root_x, root_y)
       /* Default min and max values.  */
       min_x = 0;
       min_y = 0;
-      max_x = FRAME_W32_DISPLAY_INFO (f)->width;
-      max_y = FRAME_W32_DISPLAY_INFO (f)->height;
+      max_x = x_display_pixel_width (FRAME_W32_DISPLAY_INFO (f));
+      max_y = x_display_pixel_height (FRAME_W32_DISPLAY_INFO (f));
 
       BLOCK_INPUT;
       GetCursorPos (&pt);