aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2024-04-29 14:54:29 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2024-04-30 09:50:31 +0200
commit1b58c55d2afdad56b67a8a8a0b07fe6f120e104b (patch)
tree5c429e694568b9d31f0b15802cea7025978b1e57 /sources/shiboken6
parentc97b67f01976a52a7aee7efb4cb79a4a142100d7 (diff)
libshiboken: Clarify explanatory comment of is_user_type flagHEADdev
Change-Id: I78b5d065985002342870ad2538a5db4684f327f8 Reviewed-by: Adrian Herrmann <adrian.herrmann@qt.io>
Diffstat (limited to 'sources/shiboken6')
-rw-r--r--sources/shiboken6/libshiboken/basewrapper_p.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/shiboken6/libshiboken/basewrapper_p.h b/sources/shiboken6/libshiboken/basewrapper_p.h
index 526bf9fa3..729c6a5e6 100644
--- a/sources/shiboken6/libshiboken/basewrapper_p.h
+++ b/sources/shiboken6/libshiboken/basewrapper_p.h
@@ -114,7 +114,8 @@ struct SbkObjectTypePrivate
/// True if this type holds two or more C++ instances, e.g.: a Python class which inherits from two C++ classes.
unsigned int is_multicpp : 1;
- /// True if this type was defined by the user.
+ /// True if this type was defined by the user (a class written in Python inheriting
+ /// a class provided by a Shiboken binding).
unsigned int is_user_type : 1;
/// Tells is the type is a value type or an object-type, see BEHAVIOUR_ *constants.
unsigned int type_behaviour : 2;