ui/uiengine/medialistwrapper/src/glxmlwrapper_p.cpp
changeset 52 a3a4c0de738e
parent 50 a0f57508af73
child 62 36d93b4dc635
--- a/ui/uiengine/medialistwrapper/src/glxmlwrapper_p.cpp	Sat Jul 10 00:59:39 2010 +0530
+++ b/ui/uiengine/medialistwrapper/src/glxmlwrapper_p.cpp	Fri Jul 23 20:41:04 2010 +0530
@@ -881,7 +881,7 @@
 int GlxMLWrapperPrivate::RetrieveItemSize(int aItemIndex)
 {
     const TGlxMedia& item = iMediaList->Item( aItemIndex );
-    int itemSize ;
+    TUint itemSize ;
     item.GetSize(itemSize);
     return itemSize;
  }
@@ -1316,9 +1316,8 @@
     QImage image(data, aBitmap->SizeInPixels().iWidth, aBitmap->SizeInPixels().iHeight, bytesPerLine, QImage::Format_RGB16);
         
     QPixmap pixmap = QPixmap::fromImage(image);
-    if ( aBitmap->SizeInPixels().iWidth > itemWidth || aBitmap->SizeInPixels().iHeight > itemHeight ) {
-        pixmap = pixmap.scaled( itemWidth, itemHeight, Qt::KeepAspectRatio );
-    }
+    pixmap = pixmap.scaled( itemWidth, itemHeight, Qt::KeepAspectRatio );
+  
     
     aBitmap->UnlockHeap();
     HbIcon* targetIcon = new HbIcon( QIcon( pixmap ) );