mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Mark m_pixmapCacheKey as mutable so we don't have to const_cast.
This commit is contained in:
parent
6b13d18137
commit
e9a96ff80a
4 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue