diff options
| author | Eli Zaretskii | 2005-06-11 16:25:14 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-06-11 16:25:14 +0000 |
| commit | 2e09fef1ac0317fc63a1a628de0cb7371c1427d1 (patch) | |
| tree | 6f8a1b1b1a2295a984a50168d1a800fd728d15af /src/ChangeLog | |
| parent | 099a3eead27b2b63747e778aaf55565dd7ad698c (diff) | |
| download | emacs-2e09fef1ac0317fc63a1a628de0cb7371c1427d1.tar.gz emacs-2e09fef1ac0317fc63a1a628de0cb7371c1427d1.zip | |
(x_create_x_image_and_pixmap) [HAVE_NTGUI]: Cast 4th arg
to CreateDIBSection to avoid a compiler warning.
(pbm_load): Cast 3rd arg to IMAGE_BACKGROUND to avoid a compiler
warning.
(png_load): Cast return values of fn_png_create_read_struct and
fn_png_create_info_struct, to avoid compiler warnings on W32.
Cast 3rd arg to IMAGE_BACKGROUND and image_background_transparent
to avoid compiler warnings.
(jpeg_load): Cast return value of fn_jpeg_std_error to avoid a
compiler warning on W32. Cast 3rd arg to IMAGE_BACKGROUND to
avoid a compiler warning.
(tiff_load): Cast return values of fn_TIFFOpen and
fn_TIFFClientOpen to avoid compiler warning on W32. Cast 3rd arg
to IMAGE_BACKGROUND to avoid a compiler warning.
(gif_load): Cast return values of fn_DGifOpenFileName and
fn_DGifOpen to avoid compiler warnings on W32. Cast 3rd arg to
IMAGE_BACKGROUND to avoid a compiler warning.
(DrawText) [HAVE_NTGUI || MAC_OS]: If already defined, undef
before redefining.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0232aea8b48..5b71d4b089f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,25 @@ | |||
| 1 | 2005-06-11 Eli Zaretskii <eliz@gnu.org> | 1 | 2005-06-11 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * image.c (x_create_x_image_and_pixmap) [HAVE_NTGUI]: Cast 4th arg | ||
| 4 | to CreateDIBSection to avoid a compiler warning. | ||
| 5 | (pbm_load): Cast 3rd arg to IMAGE_BACKGROUND to avoid a compiler | ||
| 6 | warning. | ||
| 7 | (png_load): Cast return values of fn_png_create_read_struct and | ||
| 8 | fn_png_create_info_struct, to avoid compiler warnings on W32. | ||
| 9 | Cast 3rd arg to IMAGE_BACKGROUND and image_background_transparent | ||
| 10 | to avoid compiler warnings. | ||
| 11 | (jpeg_load): Cast return value of fn_jpeg_std_error to avoid a | ||
| 12 | compiler warning on W32. Cast 3rd arg to IMAGE_BACKGROUND to | ||
| 13 | avoid a compiler warning. | ||
| 14 | (tiff_load): Cast return values of fn_TIFFOpen and | ||
| 15 | fn_TIFFClientOpen to avoid compiler warning on W32. Cast 3rd arg | ||
| 16 | to IMAGE_BACKGROUND to avoid a compiler warning. | ||
| 17 | (gif_load): Cast return values of fn_DGifOpenFileName and | ||
| 18 | fn_DGifOpen to avoid compiler warnings on W32. Cast 3rd arg to | ||
| 19 | IMAGE_BACKGROUND to avoid a compiler warning. | ||
| 20 | (DrawText) [HAVE_NTGUI || MAC_OS]: If already defined, undef | ||
| 21 | before redefining. | ||
| 22 | |||
| 3 | * w32bdf.c (create_offscreen_bitmap): Cast `bitsp' to `void **' in | 23 | * w32bdf.c (create_offscreen_bitmap): Cast `bitsp' to `void **' in |
| 4 | the call to CreateDIBSection, to avoid a compiler warning. | 24 | the call to CreateDIBSection, to avoid a compiler warning. |
| 5 | 25 | ||