summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@digia.com>2015-07-22 10:52:10 +0200
committerNico Vertriest <nico.vertriest@digia.com>2015-07-22 13:47:35 +0000
commitf9eb2534de4633409246f1be8e154947d840de82 (patch)
treef87ea664d417f26e395c83ccd07f12a78bd21f36 /doc
parente6ddae07e1e571a7a6e0c531b961dbddcd217643 (diff)
Doc: Add Q_MV_IOS to ignored C++ directives
Enumeration QSysInfo::MacVersion uses a macro to define enumeration values. QDoc gets confused about it and prints a lot of warnings. Adding the macro to ignored directives does not resolve the documentation issue completely (enum values still show up as '?'), but it gets rid of the warnings. Task-number: QTBUG-43810 Change-Id: Ie4009646a78c62b5f1860d29855d3941e79d9388 Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/global/qt-cpp-defines.qdocconf3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/global/qt-cpp-defines.qdocconf b/doc/global/qt-cpp-defines.qdocconf
index 3491e00402..7cc9e0f317 100644
--- a/doc/global/qt-cpp-defines.qdocconf
+++ b/doc/global/qt-cpp-defines.qdocconf
@@ -152,4 +152,5 @@ Cpp.ignoredirectives += \
QT_WARNING_DISABLE_CLANG \
QT_WARNING_DISABLE_GCC \
QT_WARNING_DISABLE_INTEL \
- QT_WARNING_DISABLE_MSVC
+ QT_WARNING_DISABLE_MSVC \
+ Q_MV_IOS