mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Use static constants for default icon numbers.
This commit is contained in:
parent
62073fa74d
commit
621ec80bbe
4 changed files with 10 additions and 2 deletions
|
@ -28,7 +28,7 @@ Entry::Entry()
|
|||
m_updateTimeinfo = true;
|
||||
m_tmpHistoryItem = 0;
|
||||
|
||||
m_data.iconNumber = 0;
|
||||
m_data.iconNumber = DefaultIconNumber;
|
||||
m_data.autoTypeEnabled = true;
|
||||
m_data.autoTypeObfuscation = 0;
|
||||
|
||||
|
@ -56,6 +56,8 @@ Entry::~Entry()
|
|||
qDeleteAll(m_history);
|
||||
}
|
||||
|
||||
const int Entry::DefaultIconNumber = 0;
|
||||
|
||||
template <class T> bool Entry::set(T& property, const T& value)
|
||||
{
|
||||
if (property != value) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue