>>>>> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes:
Angus> Martin, does this patch fix the problem for you? It shoudl Angus> buffer the pixmap. I am not sure I understand the patch: QLImage::QLImage(QLImage const & other) : Image(other), original_(other.original_), - transformed_(other.original_) + transformed_(other.original_), + transformed_pixmap_(other.original_) Why is everything initialized from original_? Can't you just have QLImage use only Pixmaps? What may happen is that you create a new QPixmap everytime a copy is made, so it has to be downloaded. Isn't it possible to use something like + transformed_(other.transformed_), + transformed_pixmap_(other.transformed_pixmap_) JMarc