mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 21:47:38 +03:00
New TODO comment style.
Qt Creator 2.5 is able to parse those.
This commit is contained in:
parent
8faac078fd
commit
587a647c11
16 changed files with 38 additions and 38 deletions
|
@ -92,7 +92,7 @@ QImage Entry::icon() const
|
|||
return databaseIcons()->icon(m_data.iconNumber);
|
||||
}
|
||||
else {
|
||||
// TODO check if database() is 0
|
||||
// TODO: check if database() is 0
|
||||
return database()->metadata()->customIcon(m_data.customIcon);
|
||||
}
|
||||
}
|
||||
|
@ -105,7 +105,7 @@ QPixmap Entry::iconPixmap() const
|
|||
else {
|
||||
QPixmap pixmap;
|
||||
if (!QPixmapCache::find(m_pixmapCacheKey, &pixmap)) {
|
||||
// TODO check if database() is 0
|
||||
// TODO: check if database() is 0
|
||||
pixmap = QPixmap::fromImage(database()->metadata()->customIcon(m_data.customIcon));
|
||||
*const_cast<QPixmapCache::Key*>(&m_pixmapCacheKey) = QPixmapCache::insert(pixmap);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue