summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qmetatype.h
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2022-09-22 19:45:34 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2022-09-26 17:27:03 +0200
commit215506654803e551c2e831384ea8ddb80b1870e0 (patch)
tree67c84fa252025d855da79a71c1634e865ffbffd2 /src/corelib/kernel/qmetatype.h
parent633c1365966eda89fc883c039683a727d0a0813e (diff)
Clear two pointless entries from the QDoc-only QMetaType::Type
The real Type has several "administrative" members beside LastCoreType and LastGuiType, but only these two appear in the qdoc-only fake version of Type, only to be \omitvalue'd out in the docs. Save the perpetual "need" to keep updating them with each new addition (they weren't even in sync with the real versions anyway) by removing them. Change-Id: If7c5da87655a2da5c7f29f394c9dd9921ff0c1a7 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/kernel/qmetatype.h')
-rw-r--r--src/corelib/kernel/qmetatype.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/kernel/qmetatype.h b/src/corelib/kernel/qmetatype.h
index 4092c106d2..abdc59005e 100644
--- a/src/corelib/kernel/qmetatype.h
+++ b/src/corelib/kernel/qmetatype.h
@@ -357,8 +357,8 @@ public:
// Widget types
QSizePolicy = 0x2000,
- LastCoreType = Char32,
- LastGuiType = QColorSpace,
+
+ // Start-point for client-code types:
User = 65536
};
#endif