summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2009-05-04 12:22:20 (GMT)
committerMartin Smith <msmith@trolltech.com>2009-05-04 12:22:20 (GMT)
commit6df2e157391dd812ee8b71c2373411f2580117d1 (patch)
tree62ccb2d8e9feb5a4f357a6405b4c5e673764365b /src/declarative/qml
parent2283c848fe8bf2704c6c35ee7985657bd521dee9 (diff)
downloadQt-6df2e157391dd812ee8b71c2373411f2580117d1.zip
Qt-6df2e157391dd812ee8b71c2373411f2580117d1.tar.gz
Qt-6df2e157391dd812ee8b71c2373411f2580117d1.tar.bz2
qdoc: Corrected some qdoc warnings.
Diffstat (limited to 'src/declarative/qml')
-rw-r--r--src/declarative/qml/qmlcontext.cpp18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/declarative/qml/qmlcontext.cpp b/src/declarative/qml/qmlcontext.cpp
index c1acdc7..30857ad 100644
--- a/src/declarative/qml/qmlcontext.cpp
+++ b/src/declarative/qml/qmlcontext.cpp
@@ -261,10 +261,10 @@ QmlContext *QmlContext::parentContext() const
Add a default \a object to this context. The object will be added after
any existing default objects.
*/
-void QmlContext::addDefaultObject(QObject *defaultObject)
+void QmlContext::addDefaultObject(QObject *object)
{
Q_D(QmlContext);
- d->addDefaultObject(defaultObject, QmlContextPrivate::NormalPriority);
+ d->addDefaultObject(object, QmlContextPrivate::NormalPriority);
}
/*!
@@ -340,13 +340,11 @@ QmlContext *QmlContext::activeContext()
/*!
Resolves the URL \a src relative to the URL of the
- containing component.
+ containing component. If \a src is absolute, it is
+ simply returned. If there is no containing component,
+ an empty URL is returned.
- If \a src is absolute, it is simply returned.
-
- If there is no containing component, an empty URL is returned.
-
- \sa componentUrl
+ \sa QmlEngine::componentUrl()
*/
QUrl QmlContext::resolvedUrl(const QUrl &src)
{
@@ -372,10 +370,10 @@ QUrl QmlContext::resolvedUrl(const QUrl &src)
/*!
Resolves the component URI \a src relative to the URL of the
containing component, and according to the
- \link QmlEngine::nameSpacePaths() namespace paths\endlink of the
+ \l {QmlEngine::nameSpacePaths()} {namespace paths} of the
context's engine, returning the resolved URL.
- \sa componentUrl
+ \sa QmlEngine::componentUrl()
*/
QUrl QmlContext::resolvedUri(const QUrl &src)
{