Doc: broken links and missing doc for functions
authorNico Vertriest <nico.vertriest@digia.com>
Tue, 21 Jul 2015 09:03:42 +0000 (11:03 +0200)
committerNico Vertriest <nico.vertriest@digia.com>
Wed, 2 Sep 2015 08:59:01 +0000 (08:59 +0000)
Task-number. QTBUG-43810

Change-Id: I14e03317d7470f33a899ba05b62b3d68fdb03734
Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
src/qml/jsapi/qjsvalue.cpp
src/qml/qml/qqmlabstracturlinterceptor.cpp
src/quick/doc/src/dynamicview-tutorial.qdoc

index 50669c46a8d867030178bbf92b01ac58c17efd6e..1d9dc2b6dbc3c8e1a9b86c88bc6f5e4b465e8d0d 100644 (file)
@@ -211,6 +211,18 @@ QJSValue::QJSValue(const QJSValue& other)
     }
 }
 
+/*!
+    \fn QJSValue::QJSValue(QJSValue && other)
+
+    Move constructor. Moves from \a other into this QJSValue object.
+*/
+
+/*!
+    \fn QJSValue &operator=(QJSValue && other)
+
+    Move-assigns \a other to this QJSValue object.
+*/
+
 /*!
     Destroys this QJSValue.
 */
index cb57bc2146e464cc74351e41591d0546219ffc0e..dce41b0caa823da89dab504fb595217a56ea09fd 100644 (file)
  Your implementation of this function must be thread-safe, as it can be called from multiple threads
  at the same time.
 */
+/*!
+   \fn QQmlAbstractUrlInterceptor::QQmlAbstractUrlInterceptor()
+
+   Constructor for QQmlAbstractUrlInterceptor.
+*/
+/*!
+   \fn QQmlAbstractUrlInterceptor::~QQmlAbstractUrlInterceptor()
+
+   Destructor for QQmlAbstractUrlInterceptor.
+*/
index f87f94f264dcff244786d11d1ab83f5023483483..2b5bb6e0c18ef4d1369fd145aa34a3db8ebc72ca 100644 (file)
@@ -208,8 +208,8 @@ item and then transfer the item to the items group before moving it to the pre-d
 repeat until the unsorted group is empty.
 
 To find the insert position for an item we request a handle for the item from the unsorted group
-with the \l {DelegateModel::}{get} function.  Through the model property on this
-handle we can access the same model data that is available in a delegate instance of that item and
+with the \l {DelegateModelGroup::}{get()} function. Through the model property on this handle we can
+access the same model data that is available in a delegate instance of that item and
 compare against other items to determine relative position.
 
 \snippet tutorials/dynamicview/dynamicview4/dynamicview.qml 3