By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2033
Collapse All | Expand All

(-)a/src/kernel/qimage.cpp (-6 / +6 lines)
Lines 1531-1542 static bool convert_32_to_8( const TQImage *src, TQImage *dst, int conversion_fl Link Here
1531
	int* line2[3];
1531
	int* line2[3];
1532
	int* pv[3];
1532
	int* pv[3];
1533
	if ( ( conversion_flags & TQt::Dither_Mask ) == TQt::DiffuseDither ) {
1533
	if ( ( conversion_flags & TQt::Dither_Mask ) == TQt::DiffuseDither ) {
1534
	    line1[0] = new int[src->width()];
1534
	    line1[0] = new int[sw];
1535
	    line2[0] = new int[src->width()];
1535
	    line2[0] = new int[sw];
1536
	    line1[1] = new int[src->width()];
1536
	    line1[1] = new int[sw];
1537
	    line2[1] = new int[src->width()];
1537
	    line2[1] = new int[sw];
1538
	    line1[2] = new int[src->width()];
1538
	    line1[2] = new int[sw];
1539
	    line2[2] = new int[src->width()];
1539
	    line2[2] = new int[sw];
1540
	    pv[0] = new int[sw];
1540
	    pv[0] = new int[sw];
1541
	    pv[1] = new int[sw];
1541
	    pv[1] = new int[sw];
1542
	    pv[2] = new int[sw];
1542
	    pv[2] = new int[sw];
(-)a/src/kernel/qpixmap_x11.cpp (-1 / +3 lines)
Lines 764-769 TQImage TQPixmap::convertToImage() const Link Here
764
        else
764
        else
765
#endif
765
#endif
766
        qSafeXDestroyImage( xi );
766
        qSafeXDestroyImage( xi );
767
	((TQPixmap*)this)->data->ximage = 0;
767
	return image;
768
	return image;
768
    }
769
    }
769
770
Lines 947-953 TQImage TQPixmap::convertToImage() const Link Here
947
            qt_XShmDestroyImage( xi, &shminfo );
948
            qt_XShmDestroyImage( xi, &shminfo );
948
        else
949
        else
949
#endif
950
#endif
950
            qSafeXDestroyImage( xi );
951
	qSafeXDestroyImage( xi );
952
	((TQPixmap*)this)->data->ximage = 0;
951
	return image;
953
	return image;
952
    }
954
    }
953
955
(-)a/src/kernel/qwidget_x11.cpp (-1 lines)
Lines 1336-1342 void TQWidget::setIcon( const TQPixmap &pixmap ) Link Here
1336
		    int r = int( tqRed( l ) );
1336
		    int r = int( tqRed( l ) );
1337
		    int g = int( tqGreen( l ) );
1337
		    int g = int( tqGreen( l ) );
1338
		    int b = int( tqBlue( l ) );
1338
		    int b = int( tqBlue( l ) );
1339
		    ls[x] = tqRgb( r, g, b );
1340
		    XSetForeground(x11Display(), gc, (r << 16) | (g << 8) | b );
1339
		    XSetForeground(x11Display(), gc, (r << 16) | (g << 8) | b );
1341
		    XDrawPoint(x11Display(), pmHandle, gc, x, y);
1340
		    XDrawPoint(x11Display(), pmHandle, gc, x, y);
1342
		}
1341
		}

Return to bug 2033