aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTopi Reinio <[email protected]>2025-08-15 13:23:27 +0000
committerTopi Reinio <[email protected]>2025-09-18 13:42:20 +0000
commit1cb9c3c9743722058cac198f0533a30ebb1f8b49 (patch)
treee6764dd600113144874f6aef7c817def77043345
parent506f12810368578dc7ff4b0418b496abf1556292 (diff)
Doc: Mark TestResult QML type \internal
The TestResult type has never been documented, but the source code contains QDoc documentation comments for a number of its properties. Add a \qmltype topic for the type and mark it \internal, to remove QDoc warnings such as quicktestresult.cpp:184: (qdoc) warning: No output generated for QML property 'TestResult::testCaseName' because 'TestResult' is undocumented Change-Id: I4021c482f145e591c2c8434ff016d547fc465ad9 Reviewed-by: Andreas Eliasson <[email protected]> Reviewed-by: Mitch Curtis <[email protected]>
-rw-r--r--src/qmltest/quicktestresult.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qmltest/quicktestresult.cpp b/src/qmltest/quicktestresult.cpp
index e9cc03da87..0b73fc31b0 100644
--- a/src/qmltest/quicktestresult.cpp
+++ b/src/qmltest/quicktestresult.cpp
@@ -166,6 +166,11 @@ QByteArray QuickTestResultPrivate::intern(const QString &str)
return *(internedStrings.insert(bstr));
}
+
+/*!
+ \qmltype TestResult
+ \internal
+*/
QuickTestResult::QuickTestResult(QObject *parent)
: QObject(parent), d_ptr(new QuickTestResultPrivate)
{