Use constructor initialization lists where possible.

This commit is contained in:
Felix Geyer 2012-07-19 13:57:55 +02:00
parent 4152e93bb7
commit 308d3ad84b
9 changed files with 31 additions and 38 deletions

View file

@ -29,10 +29,9 @@ Entry::Entry()
: m_attributes(new EntryAttributes(this))
, m_attachments(new EntryAttachments(this))
, m_autoTypeAssociations(new AutoTypeAssociations(this))
, m_tmpHistoryItem(Q_NULLPTR)
, m_updateTimeinfo(true)
{
m_updateTimeinfo = true;
m_tmpHistoryItem = Q_NULLPTR;
m_data.iconNumber = DefaultIconNumber;
m_data.autoTypeEnabled = true;
m_data.autoTypeObfuscation = 0;