diff options
| author | Jason Rumney | 2000-05-30 21:41:35 +0000 |
|---|---|---|
| committer | Jason Rumney | 2000-05-30 21:41:35 +0000 |
| commit | 5101dbdff2c551b749951f758c56eeb681f537f4 (patch) | |
| tree | 10a6cf12de0e8309804d480b86705f61fe9ef6e3 | |
| parent | ad784d768d4d83a954cd26e5867533206ffcf65e (diff) | |
| download | emacs-5101dbdff2c551b749951f758c56eeb681f537f4.tar.gz emacs-5101dbdff2c551b749951f758c56eeb681f537f4.zip | |
(glyph_to_pixel_coords): Change first parameter to
window pointer to be consistent with w32term.c and xterm.c.
| -rw-r--r-- | src/w32console.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, | |||
| 765 | } | 765 | } |
| 766 | 766 | ||
| 767 | void | 767 | void |
| 768 | glyph_to_pixel_coords (struct frame * f, int x, int y, int *pix_x, int *pix_y) | 768 | glyph_to_pixel_coords (struct window * f, int x, int y, int *pix_x, int *pix_y) |
| 769 | { | 769 | { |
| 770 | *pix_x = x; | 770 | *pix_x = x; |
| 771 | *pix_y = y; | 771 | *pix_y = y; |