From: Jason Rumney Date: Tue, 30 May 2000 21:41:35 +0000 (+0000) Subject: (glyph_to_pixel_coords): Change first parameter to X-Git-Tag: emacs-pretest-21.0.90~3611 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5101dbdff2c551b749951f758c56eeb681f537f4;p=emacs.git (glyph_to_pixel_coords): Change first parameter to window pointer to be consistent with w32term.c and xterm.c. --- diff --git a/src/w32console.c b/src/w32console.c index ac33abd6501..b0746e9f1ff 100644 --- a/src/w32console.c +++ b/src/w32console.c @@ -765,7 +765,7 @@ pixel_to_glyph_coords (struct frame * f, int pix_x, int pix_y, int *x, int *y, } void -glyph_to_pixel_coords (struct frame * f, int x, int y, int *pix_x, int *pix_y) +glyph_to_pixel_coords (struct window * f, int x, int y, int *pix_x, int *pix_y) { *pix_x = x; *pix_y = y;