Fix some qdoc-warnings.
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>
Fri, 20 Feb 2015 13:48:46 +0000 (14:48 +0100)
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>
Mon, 23 Feb 2015 12:17:55 +0000 (12:17 +0000)
qtdeclarative/src/quick/scenegraph/coreapi/qsgmaterial.cpp:384: warning: Class RenderState has no \inmodule command; using project name by default: QtQuick
qtdeclarative/src/quick/scenegraph/util/qsgsimplerectnode.cpp:39: warning: Class QSGSimpleRectNode has no \inmodule command; using project name by default: QtQuick
qtdeclarative/src/quick/scenegraph/util/qsgtextureprovider.cpp:38: warning: Class QSGTextureProvider has no \inmodule command; using project name by default: QtQuick
qtdeclarative/src/quick/items/qquickwindow.cpp:3156: warning: Cannot find 'closing(...)' in '\fn' void QQuickWindow::closing()
qtdeclarative/src/quick/items/qquickwindow.h:160: warning: No documentation for 'QQuickWindow::closing()'
qtdeclarative/src/quick/items/qquickwindow.cpp:3134: warning: Can't link to 'Window.closing()'
qtdeclarative/src/qml/qml/qqmlfileselector.cpp:90: warning: Undocumented parameter 'parent' in QQmlFileSelector::QQmlFileSelector()

Change-Id: I42cf1e06c9e7a63327acc470bd33a726acc69bfc
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
src/qml/qml/qqmlfileselector.cpp
src/quick/items/qquickwindow.cpp
src/quick/scenegraph/coreapi/qsgmaterial.cpp
src/quick/scenegraph/util/qsgsimplerectnode.cpp
src/quick/scenegraph/util/qsgtextureprovider.cpp

index 4939ac1..2b3c2ad 100644 (file)
@@ -88,9 +88,9 @@ Q_GLOBAL_STATIC(interceptorSelectorMap, interceptorInstances);
  */
 
 /*!
-  Creates a new QQmlFileSelector, which includes its own QFileSelector.
-  \a engine is the QQmlEngine you wish to apply file selectors too. It will
-  also take ownership of the QQmlFileSelector.
+  Creates a new QQmlFileSelector with parent object \a parent, which includes
+  its own QFileSelector. \a engine is the QQmlEngine you wish to apply file
+  selectors to. It will also take ownership of the QQmlFileSelector.
 */
 
 QQmlFileSelector::QQmlFileSelector(QQmlEngine* engine, QObject* parent)
index 8ac6ac7..12be50b 100644 (file)
@@ -3154,11 +3154,11 @@ bool QQuickWindow::isSceneGraphInitialized() const
 */
 
 /*!
-    \fn void QQuickWindow::closing()
+    \fn void QQuickWindow::closing(QQuickCloseEvent *close)
     \since 5.1
 
-    This signal is emitted when the window receives a QCloseEvent from the
-    windowing system.
+    This signal is emitted when the window receives the event \a close from
+    the windowing system.
 */
 
 /*!
index b9d191a..c68c0b9 100644 (file)
@@ -385,6 +385,7 @@ void QSGMaterialShader::compile()
     \class QSGMaterialShader::RenderState
     \brief The QSGMaterialShader::RenderState encapsulates the current rendering state
     during a call to QSGMaterialShader::updateState().
+    \inmodule QtQuick
 
     The render state contains a number of accessors that the shader needs to respect
     in order to conform to the current state of the scene graph.
index 1ee2dbe..17aeb51 100644 (file)
@@ -41,6 +41,7 @@ QT_BEGIN_NAMESPACE
 
   \brief The QSGSimpleRectNode class is a convenience class for drawing
   solid filled rectangles using scenegraph.
+  \inmodule QtQuick
 
  */
 
index 7632821..b9f9bde 100644 (file)
@@ -38,6 +38,7 @@ QT_BEGIN_NAMESPACE
 /*!
     \class QSGTextureProvider
     \brief The QSGTextureProvider class encapsulates texture based entities in QML.
+    \inmodule QtQuick
 
     The QSGTextureProvider lives primarily in the scene graph rendering thread.