A bit of code cleanup.

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2014-11-11 17:28:52 -02:00 committed by Dirk Hohndel
parent 1841eb98b9
commit 819d358f8c
3 changed files with 7 additions and 10 deletions

View file

@ -2253,7 +2253,7 @@ int LanguageModel::rowCount(const QModelIndex &parent) const
}
TagFilterModel::TagFilterModel(QObject *parent) : QStringListModel(parent), checkState(NULL)
TagFilterModel::TagFilterModel(QObject *parent) : QStringListModel(parent)
{
}
@ -2366,7 +2366,7 @@ bool TagFilterModel::filterRow(int source_row, const QModelIndex &source_parent,
return false;
}
BuddyFilterModel::BuddyFilterModel(QObject *parent) : QStringListModel(parent), checkState(NULL)
BuddyFilterModel::BuddyFilterModel(QObject *parent) : QStringListModel(parent)
{
}
@ -2482,7 +2482,7 @@ bool BuddyFilterModel::setData(const QModelIndex &index, const QVariant &value,
return false;
}
LocationFilterModel::LocationFilterModel(QObject *parent) : QStringListModel(parent), checkState(NULL)
LocationFilterModel::LocationFilterModel(QObject *parent) : QStringListModel(parent)
{
}