Mark m_pixmapCacheKey as mutable so we don't have to const_cast.

This commit is contained in:
Felix Geyer 2012-07-25 12:15:14 +02:00
parent 6b13d18137
commit e9a96ff80a
4 changed files with 4 additions and 4 deletions

View file

@ -132,7 +132,7 @@ QPixmap Group::iconPixmap() const
if (!QPixmapCache::find(m_pixmapCacheKey, &pixmap)) {
// TODO: check if m_db is 0
pixmap = QPixmap::fromImage(m_db->metadata()->customIcon(m_customIcon));
const_cast<Group*>(this)->m_pixmapCacheKey = QPixmapCache::insert(pixmap);
m_pixmapCacheKey = QPixmapCache::insert(pixmap);
}
return pixmap;