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

@ -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()