diff options
Diffstat (limited to 'src/corelib/kernel/qassociativeiterable.cpp')
| -rw-r--r-- | src/corelib/kernel/qassociativeiterable.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/kernel/qassociativeiterable.cpp b/src/corelib/kernel/qassociativeiterable.cpp index 8a2fc63c441..bca9d43901d 100644 --- a/src/corelib/kernel/qassociativeiterable.cpp +++ b/src/corelib/kernel/qassociativeiterable.cpp @@ -21,7 +21,7 @@ QT_WARNING_DISABLE_DEPRECATED */ QVariant QAssociativeIterator::key() const { - return QIterablePrivate::retrieveElement( + return QtIterablePrivate::retrieveElement( metaContainer().keyMetaType(), [this](void *dataPtr) { metaContainer().keyAtIterator(constIterator(), dataPtr); }); @@ -67,7 +67,7 @@ QVariantPointer<QAssociativeIterator> QAssociativeIterator::operator->() const */ QVariant QAssociativeConstIterator::key() const { - return QIterablePrivate::retrieveElement( + return QtIterablePrivate::retrieveElement( metaContainer().keyMetaType(), [this](void *dataPtr) { metaContainer().keyAtConstIterator(constIterator(), dataPtr); }); @@ -79,7 +79,7 @@ QVariant QAssociativeConstIterator::key() const */ QVariant QAssociativeConstIterator::value() const { - return QIterablePrivate::retrieveElement( + return QtIterablePrivate::retrieveElement( metaContainer().mappedMetaType(), [this](void *dataPtr) { metaContainer().mappedAtConstIterator(constIterator(), dataPtr); }); |
