Fix warning in taskmodel

Change-Id: Ie1c0c7112c2de7af51fb96415155b3b723a488a8
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Tobias Hunger
2013-07-11 16:49:35 +02:00
parent 30cf45e312
commit 3f9380ae0c

View File

@@ -341,7 +341,7 @@ void TaskModel::setFileNotFound(const QModelIndex &idx, bool b)
/////
TaskFilterModel::TaskFilterModel(TaskModel *sourceModel, QObject *parent) : QAbstractItemModel(parent),
m_sourceModel(sourceModel), m_mappingUpToDate(false)
m_mappingUpToDate(false), m_sourceModel(sourceModel)
{
Q_ASSERT(m_sourceModel);
connect(m_sourceModel, SIGNAL(rowsInserted(QModelIndex,int,int)),