summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qvariant.cpp
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2020-09-23 11:55:06 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2020-09-24 06:52:23 +0200
commitf791c1c0b5e2fa65781462be14be95fcf652bf00 (patch)
tree0a59afce2715bcb1ec08a49363330d2c51066fbd /src/corelib/kernel/qvariant.cpp
parente1cf5b23481af9e9646f9aeb0e45a46e31e8684d (diff)
Fix some qdoc warnings in QMetaType and QVariant
Document new enum values, remove documentation for implicit members, fix parameters, and tie documentation to function definitions. Change-Id: I5f32d45be8709e5f614d099ddf21252e23e144f8 Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'src/corelib/kernel/qvariant.cpp')
-rw-r--r--src/corelib/kernel/qvariant.cpp48
1 files changed, 18 insertions, 30 deletions
diff --git a/src/corelib/kernel/qvariant.cpp b/src/corelib/kernel/qvariant.cpp
index 56f7ead1e5..f28cd5a7a0 100644
--- a/src/corelib/kernel/qvariant.cpp
+++ b/src/corelib/kernel/qvariant.cpp
@@ -459,34 +459,6 @@ static void customClear(QVariant::Private *d)
Constructs an invalid variant.
*/
-
-/*!
- \fn QVariant::QVariant(QMetaType type, const void *copy)
-
- Constructs variant of type \a type, and initializes with
- \a copy if \a copy is not \nullptr.
-
- Note that you have to pass the address of the variable you want stored.
-
- Usually, you never have to use this constructor, use QVariant::fromValue()
- instead to construct variants from the pointer types represented by
- \c QMetaType::VoidStar, and \c QMetaType::QObjectStar.
-
- \sa QVariant::fromValue(), QMetaType::Type
-*/
-
-/*!
- \fn QVariant::QVariant(Type type)
-
- Constructs an uninitialized variant of type \a type. This will create a
- variant in a special null state that if accessed will return a default
- constructed value of the \a type.
-
- \sa isNull()
-*/
-
-
-
/*!
\fn QVariant::create(int type, const void *copy)
@@ -793,12 +765,28 @@ QVariant::QVariant(const QVariant &p)
Constructs a new variant with the regular expression value \a re.
*/
+/*!
+ Constructs an uninitialized variant of type \a type. This will create a
+ variant in a special null state that if accessed will return a default
+ constructed value of the \a type.
+
+ \sa isNull()
+*/
QVariant::QVariant(Type type)
{ create(type, nullptr); }
/*!
- \internal
- */
+ Constructs variant of type \a type, and initializes with
+ \a copy if \a copy is not \nullptr.
+
+ Note that you have to pass the address of the variable you want stored.
+
+ Usually, you never have to use this constructor, use QVariant::fromValue()
+ instead to construct variants from the pointer types represented by
+ \c QMetaType::VoidStar, and \c QMetaType::QObjectStar.
+
+ \sa QVariant::fromValue(), QMetaType::Type
+*/
QVariant::QVariant(QMetaType type, const void *copy) : d(type)
{
customConstruct(&d, copy);