Remove ambiguous literal 0 from createIndex calls.

This is now a build-error. The default value is a null void pointer anyway.

Change-Id: I92d0faf5152ec53c8e84ba4982c151a09aa33146
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
Stephen Kelly
2012-09-21 16:15:44 +02:00
committed by Daniel Teske
parent 91e9cffdca
commit 8dd13f4d30
4 changed files with 4 additions and 4 deletions

View File

@@ -360,7 +360,7 @@ QModelIndex TaskFilterModel::index(int row, int column, const QModelIndex &paren
{
if (parent.isValid())
return QModelIndex();
return createIndex(row, column, 0);
return createIndex(row, column);
}
QModelIndex TaskFilterModel::parent(const QModelIndex &child) const