|
|
|
@ -2641,9 +2641,9 @@ TQPixmap KeyView::slotGetPhoto(TQString photoId,bool mini)
|
|
|
|
|
TQImage dup=pixmap.convertToImage();
|
|
|
|
|
TQPixmap dup2;
|
|
|
|
|
if (!mini)
|
|
|
|
|
dup2.convertFromImage(dup.scale(previewSize+5,previewSize,TQ_ScaleMin));
|
|
|
|
|
dup2.convertFromImage(dup.scale(previewSize+5,previewSize,TQImage::ScaleMin));
|
|
|
|
|
else
|
|
|
|
|
dup2.convertFromImage(dup.scale(22,22,TQ_ScaleMin));
|
|
|
|
|
dup2.convertFromImage(dup.scale(22,22,TQImage::ScaleMin));
|
|
|
|
|
phototmp->unlink();
|
|
|
|
|
delete phototmp;
|
|
|
|
|
return dup2;
|
|
|
|
@ -2721,7 +2721,7 @@ void KeyView::expandKey(TQListViewItem *item)
|
|
|
|
|
pixmap.load(kgpgphototmp->name());
|
|
|
|
|
TQImage dup=pixmap.convertToImage();
|
|
|
|
|
TQPixmap dup2;
|
|
|
|
|
dup2.convertFromImage(dup.scale(previewSize+5,previewSize,TQ_ScaleMin));
|
|
|
|
|
dup2.convertFromImage(dup.scale(previewSize+5,previewSize,TQImage::ScaleMin));
|
|
|
|
|
itemuid->setPixmap(0,dup2);
|
|
|
|
|
delete kgpgphototmp;
|
|
|
|
|
//itemuid->setPixmap(0,keyPhotoId);
|
|
|
|
|