mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Removing QColor (from Qt::Widgets) from core modules. (#4247)
This commit is contained in:
parent
8bac8a7163
commit
c8ab3b5f4f
15 changed files with 47 additions and 97 deletions
|
@ -1123,15 +1123,15 @@ void EditEntryWidget::updateEntryData(Entry* entry) const
|
|||
entry->setNotes(m_mainUi->notesEdit->toPlainText());
|
||||
|
||||
if (m_advancedUi->fgColorCheckBox->isChecked() && m_advancedUi->fgColorButton->property("color").isValid()) {
|
||||
entry->setForegroundColor(QColor(m_advancedUi->fgColorButton->property("color").toString()));
|
||||
entry->setForegroundColor(m_advancedUi->fgColorButton->property("color").toString());
|
||||
} else {
|
||||
entry->setForegroundColor(QColor());
|
||||
entry->setForegroundColor(QString());
|
||||
}
|
||||
|
||||
if (m_advancedUi->bgColorCheckBox->isChecked() && m_advancedUi->bgColorButton->property("color").isValid()) {
|
||||
entry->setBackgroundColor(QColor(m_advancedUi->bgColorButton->property("color").toString()));
|
||||
entry->setBackgroundColor(m_advancedUi->bgColorButton->property("color").toString());
|
||||
} else {
|
||||
entry->setBackgroundColor(QColor());
|
||||
entry->setBackgroundColor(QString());
|
||||
}
|
||||
|
||||
IconStruct iconStruct = m_iconsWidget->state();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue