summaryrefslogtreecommitdiff
path: root/graphics/gwenview/patches/patch-ab
blob: e50fa2599153a27afcf85d795a2dc42244170fc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$NetBSD: patch-ab,v 1.3 2010/06/13 22:44:35 wiz Exp $

--- src/gvcore/pngformattype.cpp.orig	2007-09-15 13:46:13.000000000 +0000
+++ src/gvcore/pngformattype.cpp
@@ -245,7 +245,7 @@ void setup_qt( QImage& image, png_struct
 		image.setColor( i, qRgba(c,c,c,0xff) );
 	    }
 	    if ( png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) ) {
-		const int g = info_ptr->trans_values.gray;
+		const int g = info_ptr->trans_color.gray;
 		if (g < ncols) {
 		    image.setAlphaBuffer(TRUE);
 		    image.setColor(g, image.color(g) & RGB_MASK);
@@ -273,7 +273,7 @@ void setup_qt( QImage& image, png_struct
 		    info_ptr->palette[i].red,
 		    info_ptr->palette[i].green,
 		    info_ptr->palette[i].blue,
-		    info_ptr->trans[i]
+		    info_ptr->trans_alpha[i]
 		    )
 		);
 		i++;