const_cast "this" instead of the member variable.

This commit is contained in:
Felix Geyer 2012-07-19 23:32:31 +02:00
parent b6d9c2e486
commit 0c1fecfb2b
2 changed files with 4 additions and 2 deletions

View file

@ -109,7 +109,7 @@ QPixmap Entry::iconPixmap() const
if (!QPixmapCache::find(m_pixmapCacheKey, &pixmap)) {
// TODO: check if database() is 0
pixmap = QPixmap::fromImage(database()->metadata()->customIcon(m_data.customIcon));
*const_cast<QPixmapCache::Key*>(&m_pixmapCacheKey) = QPixmapCache::insert(pixmap);
const_cast<Entry*>(this)->m_pixmapCacheKey = QPixmapCache::insert(pixmap);
}
return pixmap;