mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
const_cast "this" instead of the member variable.
This commit is contained in:
parent
b6d9c2e486
commit
0c1fecfb2b
2 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue