Use static constants for default icon numbers.

This commit is contained in:
Florian Geyer 2012-05-15 16:47:46 +02:00
parent 62073fa74d
commit 621ec80bbe
4 changed files with 10 additions and 2 deletions

View file

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