contentstorage/caclient/src/caentry.cpp
changeset 115 3ab5c078b490
parent 109 e0aa398e6810
--- a/contentstorage/caclient/src/caentry.cpp	Wed Aug 18 10:05:49 2010 +0300
+++ b/contentstorage/caclient/src/caentry.cpp	Thu Sep 02 20:45:03 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);
 }