mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-11-23 16:31:28 -05:00
Use constructor initialization lists where possible.
This commit is contained in:
parent
4152e93bb7
commit
308d3ad84b
9 changed files with 31 additions and 38 deletions
|
|
@ -25,13 +25,12 @@
|
|||
const int Group::DefaultIconNumber = 48;
|
||||
|
||||
Group::Group()
|
||||
: m_iconNumber(DefaultIconNumber)
|
||||
, m_isExpanded(true)
|
||||
, m_autoTypeEnabled(Inherit)
|
||||
, m_searchingEnabled(Inherit)
|
||||
, m_updateTimeinfo(true)
|
||||
{
|
||||
m_iconNumber = DefaultIconNumber;
|
||||
m_isExpanded = true;
|
||||
m_autoTypeEnabled = Inherit;
|
||||
m_searchingEnabled = Inherit;
|
||||
|
||||
m_updateTimeinfo = true;
|
||||
}
|
||||
|
||||
Group::~Group()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue