aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/PySide6
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/PySide6')
-rw-r--r--sources/pyside6/PySide6/QtQuick/pysidequickregistertype.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/PySide6/QtQuick/pysidequickregistertype.cpp b/sources/pyside6/PySide6/QtQuick/pysidequickregistertype.cpp
index f15e1f3d5..407162df6 100644
--- a/sources/pyside6/PySide6/QtQuick/pysidequickregistertype.cpp
+++ b/sources/pyside6/PySide6/QtQuick/pysidequickregistertype.cpp
@@ -22,7 +22,7 @@ bool pyTypeObjectInheritsFromClass(PyTypeObject *pyObjType, const char *classPtr
template <class WrappedClass>
bool registerTypeIfInheritsFromClass(const char *classPtrName,
PyTypeObject *typeToRegister,
- QQmlPrivate::RegisterType *type)
+ QQmlPrivate::RegisterTypeAndRevisions *type)
{
if (!pyTypeObjectInheritsFromClass(typeToRegister, classPtrName))
return false;
@@ -35,7 +35,7 @@ bool registerTypeIfInheritsFromClass(const char *classPtrName,
return true;
}
-bool quickRegisterType(PyObject *pyObj, QQmlPrivate::RegisterType *type)
+bool quickRegisterType(PyObject *pyObj, QQmlPrivate::RegisterTypeAndRevisions *type)
{
using namespace Shiboken;