diff options
author | Ece Cinucen <[email protected]> | 2025-03-12 14:53:29 +0100 |
---|---|---|
committer | Ece Cinucen <[email protected]> | 2025-03-13 09:56:15 +0000 |
commit | 3c66c456aeab597b7cb046f81c7f015433bb57a4 (patch) | |
tree | dc7f35396738cb3820fab8ffddf2f77ce792b93a /sources/shiboken6 | |
parent | 8c491f70a0c28b4e4f863539d4a169fd72b2bba1 (diff) |
type hints: Correct type signature for QObject.inherits()
Pick-to: 6.8
Fixes: PYSIDE-3046
Change-Id: I0b33149fba73c41552fc9b4b131ba7b5ade302ec
Reviewed-by: Christian Tismer <[email protected]>
Diffstat (limited to 'sources/shiboken6')
-rw-r--r-- | sources/shiboken6/shibokenmodule/files.dir/shibokensupport/signature/mapping.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sources/shiboken6/shibokenmodule/files.dir/shibokensupport/signature/mapping.py b/sources/shiboken6/shibokenmodule/files.dir/shibokensupport/signature/mapping.py index 1efaf1993..26d0bc992 100644 --- a/sources/shiboken6/shibokenmodule/files.dir/shibokensupport/signature/mapping.py +++ b/sources/shiboken6/shibokenmodule/files.dir/shibokensupport/signature/mapping.py @@ -545,6 +545,7 @@ def init_PySide6_QtCore(): # Here we manually set it to map to 'str'. type_map_tuple.update({("PySide6.QtCore.QObject.setProperty", "char*"): str}) type_map_tuple.update({("PySide6.QtCore.QObject.property", "char*"): str}) + type_map_tuple.update({("PySide6.QtCore.QObject.inherits", "char*"): str}) return locals() |