contentstorage/caclient/src/caentry.cpp
changeset 112 dbfb5e38438b
parent 107 b34d53f6acdf
child 125 26079c1bb561
--- a/contentstorage/caclient/src/caentry.cpp	Fri Aug 06 13:40:46 2010 +0300
+++ b/contentstorage/caclient/src/caentry.cpp	Wed Aug 18 10:39:24 2010 +0300
@@ -418,10 +418,10 @@
  icon.size() == iconSize;
  \endcode
  */
-HbIcon CaEntry::makeIcon(const QSize &size) const
+HbIcon CaEntry::makeIcon(const QSizeF &size) const
 {
     CACLIENTTEST_FUNC_ENTRY("CaEntry::makeIcon");
-    HbIcon icon = CaIconCache::cache()->icon(*this,size);
+    HbIcon icon = CaIconCache::cache()->icon(*this, size);
     if (icon.isNull()) {
         icon = m_d->makeIcon(size);
         CaIconCache::cache()->insert(*this, size, icon);
@@ -645,7 +645,7 @@
  \param  size icon size to display
  \retval created icon (HbIcon).
  */
-HbIcon CaEntryPrivate::makeIcon(const QSize &size) const
+HbIcon CaEntryPrivate::makeIcon(const QSizeF &size) const
 {
     return CaMenuIconUtility::getEntryIcon(*m_q, size);
 }