Move documentation to QtQml module
authorAlan Alpert <aalpert@rim.com>
Mon, 24 Dec 2012 16:48:49 +0000 (08:48 -0800)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Wed, 23 Jan 2013 16:11:22 +0000 (17:11 +0100)
The recent move of certain elements from the QtQuick module forgot to
update the module in some of the documentation strings.

Change-Id: I5da27772004c7ceeb9c5ab6184e0078ac64ba07a
Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
src/qml/qml/qqmlbind.cpp
src/qml/qml/qqmlconnections.cpp
src/qml/qml/qqmltimer.cpp

index 7eb182b..fcb3079 100644 (file)
@@ -77,7 +77,7 @@ public:
 /*!
     \qmltype Binding
     \instantiates QQmlBind
-    \inqmlmodule QtQuick 2
+    \inqmlmodule QtQml 2
     \ingroup qtquick-interceptors
     \brief Enables the arbitrary creation of property bindings
 
@@ -151,7 +151,7 @@ QQmlBind::~QQmlBind()
 }
 
 /*!
-    \qmlproperty bool QtQuick2::Binding::when
+    \qmlproperty bool QtQml2::Binding::when
 
     This property holds when the binding is active.
     This should be set to an expression that evaluates to true when you want the binding to be active.
@@ -183,7 +183,7 @@ void QQmlBind::setWhen(bool v)
 }
 
 /*!
-    \qmlproperty Object QtQuick2::Binding::target
+    \qmlproperty Object QtQml2::Binding::target
 
     The object to be updated.
 */
@@ -210,7 +210,7 @@ void QQmlBind::setObject(QObject *obj)
 }
 
 /*!
-    \qmlproperty string QtQuick2::Binding::property
+    \qmlproperty string QtQml2::Binding::property
 
     The property to be updated.
 */
@@ -237,7 +237,7 @@ void QQmlBind::setProperty(const QString &p)
 }
 
 /*!
-    \qmlproperty any QtQuick2::Binding::value
+    \qmlproperty any QtQml2::Binding::value
 
     The value to be set on the target object and property.  This can be a
     constant (which isn't very useful), or a bound expression.
index f2d29bf..286933e 100644 (file)
@@ -73,7 +73,7 @@ public:
 /*!
     \qmltype Connections
     \instantiates QQmlConnections
-    \inqmlmodule QtQuick 2
+    \inqmlmodule QtQml 2
     \ingroup qtquick-interceptors
     \brief Describes generalized connections to signals
 
@@ -138,7 +138,7 @@ QQmlConnections::~QQmlConnections()
 }
 
 /*!
-    \qmlproperty Object QtQuick2::Connections::target
+    \qmlproperty Object QtQml2::Connections::target
     This property holds the object that sends the signal.
 
     If this property is not set, the \c target defaults to the parent of the Connection.
@@ -183,7 +183,7 @@ void QQmlConnections::setTarget(QObject *obj)
 }
 
 /*!
-    \qmlproperty bool QtQuick2::Connections::ignoreUnknownSignals
+    \qmlproperty bool QtQml2::Connections::ignoreUnknownSignals
 
     Normally, a connection to a non-existent signal produces runtime errors.
 
index c9f6bc7..a1cb853 100644 (file)
@@ -75,7 +75,7 @@ public:
 /*!
     \qmltype Timer
     \instantiates QQmlTimer
-    \inqmlmodule QtQuick 2
+    \inqmlmodule QtQml 2
     \ingroup qtquick-interceptors
     \brief Triggers a handler at a specified interval
 
@@ -122,7 +122,7 @@ QQmlTimer::QQmlTimer(QObject *parent)
 }
 
 /*!
-    \qmlproperty int QtQuick2::Timer::interval
+    \qmlproperty int QtQml2::Timer::interval
 
     Sets the \a interval between triggers, in milliseconds.
 
@@ -145,7 +145,7 @@ int QQmlTimer::interval() const
 }
 
 /*!
-    \qmlproperty bool QtQuick2::Timer::running
+    \qmlproperty bool QtQml2::Timer::running
 
     If set to true, starts the timer; otherwise stops the timer.
     For a non-repeating timer, \a running is set to false after the
@@ -173,7 +173,7 @@ void QQmlTimer::setRunning(bool running)
 }
 
 /*!
-    \qmlproperty bool QtQuick2::Timer::repeat
+    \qmlproperty bool QtQml2::Timer::repeat
 
     If \a repeat is true the timer is triggered repeatedly at the
     specified interval; otherwise, the timer will trigger once at the
@@ -200,7 +200,7 @@ void QQmlTimer::setRepeating(bool repeating)
 }
 
 /*!
-    \qmlproperty bool QtQuick2::Timer::triggeredOnStart
+    \qmlproperty bool QtQml2::Timer::triggeredOnStart
 
     When a timer is started, the first trigger is usually after the specified
     interval has elapsed.  It is sometimes desirable to trigger immediately
@@ -233,7 +233,7 @@ void QQmlTimer::setTriggeredOnStart(bool triggeredOnStart)
 }
 
 /*!
-    \qmlmethod QtQuick2::Timer::start()
+    \qmlmethod QtQml2::Timer::start()
     \brief Starts the timer
 
     If the timer is already running, calling this method has no effect.  The
@@ -245,7 +245,7 @@ void QQmlTimer::start()
 }
 
 /*!
-    \qmlmethod QtQuick2::Timer::stop()
+    \qmlmethod QtQml2::Timer::stop()
     \brief Stops the timer
 
     If the timer is not running, calling this method has no effect.  The
@@ -257,7 +257,7 @@ void QQmlTimer::stop()
 }
 
 /*!
-    \qmlmethod QtQuick2::Timer::restart()
+    \qmlmethod QtQml2::Timer::restart()
     \brief Restarts the timer
 
     If the Timer is not running it will be started, otherwise it will be
@@ -302,7 +302,7 @@ void QQmlTimer::componentComplete()
 }
 
 /*!
-    \qmlsignal QtQuick2::Timer::onTriggered()
+    \qmlsignal QtQml2::Timer::onTriggered()
 
     This handler is called when the Timer is triggered.
 */