1.1 --- a/file.cpp Fri Dec 08 20:18:56 2006 +0000
1.2 +++ b/file.cpp Mon Feb 12 09:28:46 2007 +0000
1.3 @@ -291,13 +291,13 @@
1.4 {
1.5 r=max_w / pix.width();
1.6 pix.resize(qRound(pix.width()*r), qRound(pix.height()*r));
1.7 - // FIXME not a resize, but a shrink/enlarge is needed here...
1.8 + // TODO not a resize, but a shrink/enlarge is needed here...
1.9 }
1.10 if (pix.height()>max_h)
1.11 {
1.12 r=max_h / pix.height();
1.13 pix.resize(qRound(pix.width()*r), qRound(pix.height()*r));
1.14 - // FIXME not a resize, but a shrink/enlarge is needed here...
1.15 + // TODO not a resize, but a shrink/enlarge is needed here...
1.16 }
1.17 setPixmap( pix );
1.18 }