aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/classdocumentation.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2022-11-22 13:35:35 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2022-11-24 12:40:38 +0100
commit56f3ecf68c67c45b42caa7940218d6be42156539 (patch)
treebaa0dd88ed53c31c421d0ef69f39d45759cf055b /sources/shiboken6/ApiExtractor/classdocumentation.h
parent34e8eb569b865259055558384f91b7eeb4e27958 (diff)
shiboken6: Store the property documentation in QPropertySpec
Similar to AbstractMetaFunction and AbstractMetaClass, store the documentation (brief/detail) in QPropertySpec. Task-number: PYSIDE-1106 Task-number: PYSIDE-1019 Pick-to: 6.4 Change-Id: Ide236b5918c135e331149ca384ed973fd794b55f Reviewed-by: Christian Tismer <tismer@stackless.com> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Diffstat (limited to 'sources/shiboken6/ApiExtractor/classdocumentation.h')
-rw-r--r--sources/shiboken6/ApiExtractor/classdocumentation.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sources/shiboken6/ApiExtractor/classdocumentation.h b/sources/shiboken6/ApiExtractor/classdocumentation.h
index 9c1acbbae..ef66912f8 100644
--- a/sources/shiboken6/ApiExtractor/classdocumentation.h
+++ b/sources/shiboken6/ApiExtractor/classdocumentation.h
@@ -19,6 +19,7 @@ struct EnumDocumentation
struct PropertyDocumentation
{
QString name;
+ QString brief;
QString description;
};