summaryrefslogtreecommitdiffstats
path: root/src/declarative
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2010-02-16 12:50:52 (GMT)
committerJason McDonald <jason.mcdonald@nokia.com>2010-02-16 12:50:52 (GMT)
commit5f41a70bf1bc5c28b7d08d6da84aff4126479b6d (patch)
treec15dd5a0a256995f6f44efc2b5f68f529c8c31ab /src/declarative
parent0ca62a15e146f1c038b3ee8db8cac51509a3b28e (diff)
parent80d33cec47b8188efd473070acb5ebcc1e772583 (diff)
downloadQt-5f41a70bf1bc5c28b7d08d6da84aff4126479b6d.zip
Qt-5f41a70bf1bc5c28b7d08d6da84aff4126479b6d.tar.gz
Qt-5f41a70bf1bc5c28b7d08d6da84aff4126479b6d.tar.bz2
Merge branch 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1
Diffstat (limited to 'src/declarative')
-rw-r--r--src/declarative/graphicsitems/qmlgraphicsitem.cpp4
-rw-r--r--src/declarative/qml/qmlmoduleplugin.cpp2
-rw-r--r--src/declarative/util/qmlview.cpp4
-rw-r--r--src/declarative/util/qmlview.h2
4 files changed, 10 insertions, 2 deletions
diff --git a/src/declarative/graphicsitems/qmlgraphicsitem.cpp b/src/declarative/graphicsitems/qmlgraphicsitem.cpp
index 8973cb4..87bd4dc 100644
--- a/src/declarative/graphicsitems/qmlgraphicsitem.cpp
+++ b/src/declarative/graphicsitems/qmlgraphicsitem.cpp
@@ -1426,6 +1426,10 @@ QmlGraphicsKeysAttached *QmlGraphicsKeysAttached::qmlAttachedProperties(QObject
\internal
*/
+/*! \fn void QmlGraphicsItem::transformOriginChanged(TransformOrigin)
+ \internal
+*/
+
/*!
\fn void QmlGraphicsItem::childrenChanged()
\internal
diff --git a/src/declarative/qml/qmlmoduleplugin.cpp b/src/declarative/qml/qmlmoduleplugin.cpp
index 2f2cb25..3ebb1ef 100644
--- a/src/declarative/qml/qmlmoduleplugin.cpp
+++ b/src/declarative/qml/qmlmoduleplugin.cpp
@@ -65,7 +65,7 @@ QT_BEGIN_NAMESPACE
The plugin should register QML types with qmlRegisterType() when the
defineModule() method is called.
- \sa examples/declarative/plugins
+ See the example in \c{examples/declarative/plugins}.
*/
/*!
diff --git a/src/declarative/util/qmlview.cpp b/src/declarative/util/qmlview.cpp
index 690924f..768bc7e 100644
--- a/src/declarative/util/qmlview.cpp
+++ b/src/declarative/util/qmlview.cpp
@@ -394,6 +394,10 @@ void QmlView::continueExecute()
This signal is emitted when the qml loaded contains \a errors.
*/
+/*! \fn void QmlView::quit()
+ \internal
+ */
+
/*!
\internal
*/
diff --git a/src/declarative/util/qmlview.h b/src/declarative/util/qmlview.h
index f4f58fd..dda7103 100644
--- a/src/declarative/util/qmlview.h
+++ b/src/declarative/util/qmlview.h
@@ -90,7 +90,7 @@ Q_SIGNALS:
void initialSize(QSize size);
void sceneResized(QSize size);
void errors(const QList<QmlError> &error);
- void quit ();
+ void quit();
private Q_SLOTS:
void continueExecute();