mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Removing QWidget dependency from src/core.
This commit is contained in:
parent
6f5bbf7ad1
commit
004f2b6801
46 changed files with 298 additions and 313 deletions
|
@ -173,7 +173,7 @@ void EntryPreviewWidget::updateEntryHeaderLine()
|
|||
Q_ASSERT(m_currentEntry);
|
||||
const QString title = m_currentEntry->resolveMultiplePlaceholders(m_currentEntry->title());
|
||||
m_ui->entryTitleLabel->setRawText(hierarchy(m_currentEntry->group(), title));
|
||||
m_ui->entryIcon->setPixmap(m_currentEntry->iconPixmap(IconSize::Large));
|
||||
m_ui->entryIcon->setPixmap(Icons::entryIconPixmap(m_currentEntry, IconSize::Large));
|
||||
}
|
||||
|
||||
void EntryPreviewWidget::updateEntryTotp()
|
||||
|
@ -377,7 +377,7 @@ void EntryPreviewWidget::updateGroupHeaderLine()
|
|||
{
|
||||
Q_ASSERT(m_currentGroup);
|
||||
m_ui->groupTitleLabel->setRawText(hierarchy(m_currentGroup, {}));
|
||||
m_ui->groupIcon->setPixmap(m_currentGroup->iconPixmap(IconSize::Large));
|
||||
m_ui->groupIcon->setPixmap(Icons::groupIconPixmap(m_currentGroup, IconSize::Large));
|
||||
}
|
||||
|
||||
void EntryPreviewWidget::updateGroupGeneralTab()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue