mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Splitted KeeShare into secure and insecure parts
KeeShare is now supported in a secure and insecure flavor (set CMake-Flags accordingly to allow or disallow the corresponding import and exports)
This commit is contained in:
parent
52dcc2855e
commit
d4c391deb2
18 changed files with 337 additions and 153 deletions
|
@ -125,14 +125,14 @@ QVariant GroupModel::data(const QModelIndex& index, int role) const
|
|||
|
||||
if (role == Qt::DisplayRole) {
|
||||
QString nameTemplate = tr("%1", "Template for name without annotation");
|
||||
#ifdef WITH_XC_KEESHARE
|
||||
#if defined(WITH_XC_KEESHARE)
|
||||
nameTemplate = KeeShare::indicatorSuffix(group, nameTemplate);
|
||||
#endif
|
||||
return nameTemplate.arg(group->name());
|
||||
} else if (role == Qt::DecorationRole) {
|
||||
QPixmap pixmap = group->isExpired() ? databaseIcons()->iconPixmap(DatabaseIcons::ExpiredIconIndex)
|
||||
: group->iconScaledPixmap();
|
||||
#ifdef WITH_XC_KEESHARE
|
||||
#if defined(WITH_XC_KEESHARE)
|
||||
pixmap = KeeShare::indicatorBadge(group, pixmap);
|
||||
#endif
|
||||
return pixmap;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue