summaryrefslogtreecommitdiffstats
path: root/doc/src
diff options
context:
space:
mode:
authorA-Team <ateam@pad.test.qt.nokia.com>2010-11-22 23:01:31 (GMT)
committerA-Team <ateam@pad.test.qt.nokia.com>2010-11-22 23:01:31 (GMT)
commitcfc1e1c3687d7ad1ddf4b5650d06bf52de4e3576 (patch)
treebc230caaebfaac6b28424a80f18edb17c69f2f62 /doc/src
parent1d11e612c2970af69061806b40b0d632a87a8309 (diff)
parente158714ea545bd74600f121ab726cf2cf848f3b9 (diff)
downloadQt-cfc1e1c3687d7ad1ddf4b5650d06bf52de4e3576.zip
Qt-cfc1e1c3687d7ad1ddf4b5650d06bf52de4e3576.tar.gz
Qt-cfc1e1c3687d7ad1ddf4b5650d06bf52de4e3576.tar.bz2
Merge branch '4.7-upstream' into 4.7-doc
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/declarative/qtbinding.qdoc3
-rw-r--r--doc/src/frameworks-technologies/threads.qdoc9
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/src/declarative/qtbinding.qdoc b/doc/src/declarative/qtbinding.qdoc
index cd50503..c3ce6d0 100644
--- a/doc/src/declarative/qtbinding.qdoc
+++ b/doc/src/declarative/qtbinding.qdoc
@@ -448,7 +448,8 @@ now be used from QML:
\snippet doc/src/snippets/declarative/qtbinding/enums/standalone.qml 0
The C++ type must be registered with QML to use its enums. If your C++ type is not instantiable, it
-can be registered using qmlRegisterUncreatableType().
+can be registered using qmlRegisterUncreatableType(). To be accessible from QML, the names of enum values
+must begin with a capital letter.
See the \l {Tutorial: Writing QML extensions with C++}{Writing QML extensions with C++} tutorial and
the \l {Extending QML in C++} reference documentation for more information.
diff --git a/doc/src/frameworks-technologies/threads.qdoc b/doc/src/frameworks-technologies/threads.qdoc
index 3ef617c..001b29d 100644
--- a/doc/src/frameworks-technologies/threads.qdoc
+++ b/doc/src/frameworks-technologies/threads.qdoc
@@ -459,11 +459,10 @@
\list
- \o \l{Qt::AutoConnection}{Auto Connection} (default) The behavior
- is the same as the Direct Connection, if the emitter and
- receiver are in the same thread. The behavior is the same as
- the Queued Connection, if the emitter and receiver are in
- different threads.
+ \o \l{Qt::AutoConnection}{Auto Connection} (default) If the signal is
+ emitted in the thread which the receiving object has affinity then
+ the behavior is the same as the Direct Connection. Otherwise,
+ the behavior is the same as the Queued Connection."
\o \l{Qt::DirectConnection}{Direct Connection} The slot is invoked
immediately, when the signal is emitted. The slot is executed