Fix FTBFS on png >= 0.15

pull/1/head
Timothy Pearson 13 years ago
parent d1cfcb5937
commit 18ecd51264

@ -413,16 +413,16 @@ TQImage kio_digikamthumbnailProtocol::loadPNG(const TQString& path)
if (color_type == PNG_COLOR_TYPE_PALETTE) if (color_type == PNG_COLOR_TYPE_PALETTE)
png_set_expand(png_ptr); png_set_expand(png_ptr);
if (info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA) if (color_type == PNG_COLOR_TYPE_RGB_ALPHA)
has_alpha = 1; has_alpha = 1;
if (info_ptr->color_type == PNG_COLOR_TYPE_GRAY_ALPHA) if (color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
{ {
has_alpha = 1; has_alpha = 1;
has_grey = 1; has_grey = 1;
} }
if (info_ptr->color_type == PNG_COLOR_TYPE_GRAY) if (color_type == PNG_COLOR_TYPE_GRAY)
has_grey = 1; has_grey = 1;
unsigned char **lines; unsigned char **lines;

Loading…
Cancel
Save