summaryrefslogtreecommitdiffstats
path: root/src/doc
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@theqtcompany.com>2016-01-25 09:34:15 +0100
committerTopi Reiniƶ <topi.reinio@theqtcompany.com>2016-01-26 09:13:10 +0000
commit9e62c61e42c321f8b4c258ada90e1bf6acb039b1 (patch)
treebccbb183c85731fa8c51afd77c0bc59ebe1f0021 /src/doc
parentc1cdd1c8f4a50e4f7131b65dc67f6dedd5826de2 (diff)
Doc: Fix documentation macro and other issues
QDoc doesn't allow a macro that expands into an empty string: src/core/nodes/qcomponent.cpp:189: warning: Unknown command '\TODO' Linking issues that are fixed by adding a dependency to Qt GUI: src/input/frontend/qkeyevent.cpp:121: warning: Can't link to 'QKeyEvent::nativeScanCode()' src/input/frontend/qkeyevent.cpp:141: warning: Can't link to 'QKeySequence::StandardKey' src/quick3d/quick3d/qquaternionanimation.cpp:42: warning: Can't link to 'QQuaternion' Other fixed warnings: src/input/frontend/qmousecontroller.cpp:54: warning: Unknown command '\intantiates' src/quick3d/quick3d/qquaternionanimation.cpp:42: warning: C++ class Qt3DCore::Quick::QQuaternionAnimation not found src/render/materialsystem/qparametermapping.cpp:85: warning: Undocumented enum item 'UniformBufferObject' Undocumented enum item 'ShaderStorageBufferObject' examples/qt3d/wireframe/doc/src/wireframe.qdoc:28: warning: Can't link to 'BasicCamera' Change-Id: Iea8f591bd09f0b8895dc568a48f2bfe80f2fe73d Reviewed-by: Venugopal Shivashankar <venugopal.shivashankar@digia.com>
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/qt3d.qdocconf4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/qt3d.qdocconf b/src/doc/qt3d.qdocconf
index ef352e4bb..bb51fa725 100644
--- a/src/doc/qt3d.qdocconf
+++ b/src/doc/qt3d.qdocconf
@@ -38,7 +38,7 @@ qhp.Qt3D.subprojects.qmltypes.sortPages = true
tagfile = qt3d.tags
-depends += qtcore qtqml qtquick qtdoc
+depends += qtcore qtgui qtqml qtquick qtdoc
headerdirs += . \
../render \
@@ -68,7 +68,7 @@ examples.fileextensions += "*.fraq *.geom *.vert"
examples.imageextensions += "*.png"
#excludedirs +=
-macro.TODO = ""
+macro.TODO = " "
imagedirs += images \
../../examples/qt3d/shadow-map-qml/doc/images \
../../examples/qt3d/basicshapes-cpp/doc/images \