summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qmetatype.cpp
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2015-02-10 09:37:21 +0100
committerOlivier Goffart (Woboq GmbH) <ogoffart@woboq.com>2015-02-14 00:25:01 +0000
commit2ad8c14d386470893da19568e4225fcb3bf58914 (patch)
treec0e416b665570ba5d07dd20fdc2d34741a8d3223 /src/corelib/kernel/qmetatype.cpp
parent9ddfa43e023f06387eb3360cc2e15bfff68ffe5f (diff)
QMetaType: improve docs and comments
Change-Id: I7bcc8cec95eb5abda75d936732b1113b943622dc Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
Diffstat (limited to 'src/corelib/kernel/qmetatype.cpp')
-rw-r--r--src/corelib/kernel/qmetatype.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/kernel/qmetatype.cpp b/src/corelib/kernel/qmetatype.cpp
index 4b441999a1..8f79bf5645 100644
--- a/src/corelib/kernel/qmetatype.cpp
+++ b/src/corelib/kernel/qmetatype.cpp
@@ -381,15 +381,15 @@ struct DefinedTypesFilter {
return a QMetaObject relative to this type.
- If the type is a pointer type to a subclass of QObject, flags contains
+ If the type is a pointer type to a subclass of QObject, flags() contains
QMetaType::PointerToQObject and this function returns the corresponding QMetaObject. This can
be used to in combinaison with QMetaObject::construct to create QObject of this type.
- If the type is a Q_GADGET, flags contains QMetaType::IsGadget, and this function returns its
+ If the type is a Q_GADGET, flags() contains QMetaType::IsGadget, and this function returns its
QMetaObject. This can be used to retrieve QMetaMethod and QMetaProperty and use them on a
pointer of this type. (given by QVariant::data for example)
- If the type is an enumaration, flags contains QMetaType::IsEnumeration, and this function
+ If the type is an enumeration, flags() contains QMetaType::IsEnumeration, and this function
returns the QMetaObject of the enclosing object if the enum was registered as a Q_ENUM or 0
otherwise