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

@@ -344,7 +344,7 @@ QModelIndex BookmarkManager::index(int row, int column, const QModelIndex &paren
if (parent.isValid()) if (parent.isValid())
return QModelIndex(); return QModelIndex();
else else
return createIndex(row, column, 0); return createIndex(row, column);
} }
QModelIndex BookmarkManager::parent(const QModelIndex &) const QModelIndex BookmarkManager::parent(const QModelIndex &) const

View File

@@ -78,7 +78,7 @@ bool DeviceProcessList::hasChildren(const QModelIndex &parent) const
QModelIndex DeviceProcessList::index(int row, int column, const QModelIndex &parent) const QModelIndex DeviceProcessList::index(int row, int column, const QModelIndex &parent) const
{ {
return hasIndex(row, column, parent) ? createIndex(row, column, 0) : QModelIndex(); return hasIndex(row, column, parent) ? createIndex(row, column) : QModelIndex();
} }

View File

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

View File

@@ -87,7 +87,7 @@ QModelIndex ErrorListModel::index(int row, int column, const QModelIndex &parent
QTC_ASSERT(parent.model() == this, qt_noop()); QTC_ASSERT(parent.model() == this, qt_noop());
return QModelIndex(); return QModelIndex();
} }
return createIndex(row, column, 0); return createIndex(row, column);
} }
QModelIndex ErrorListModel::parent(const QModelIndex &child) const QModelIndex ErrorListModel::parent(const QModelIndex &child) const