summaryrefslogtreecommitdiffstats
path: root/doc/src
diff options
context:
space:
mode:
authorartoka <arto.katajasalo@digia.com>2011-11-28 08:15:12 (GMT)
committerQt by Nokia <qt-info@nokia.com>2012-01-30 17:06:51 (GMT)
commit3826203f744a2147bebf5f088de0d524156f59fd (patch)
treee02da15a659c9ac7361f7b07faaec3c104c26a63 /doc/src
parent70170a1c32fc32832359fec14e1e1af7a1968fe9 (diff)
downloadQt-3826203f744a2147bebf5f088de0d524156f59fd.zip
Qt-3826203f744a2147bebf5f088de0d524156f59fd.tar.gz
Qt-3826203f744a2147bebf5f088de0d524156f59fd.tar.bz2
Various Qt documentation bug fixes (wk 42)
Task-number: QTBUG-18101 Task-number: QTBUG-8673 Task-number: QTBUG-14194 Task-number: QTBUG-9109 Task-number: QTBUG-9466 Task-number: QTBUG-8323 Task-number: QTBUG-7924 Task-number: QTBUG-20355 Task-number: QTBUG-19367 Task-number: QTBUG-21295 Task-number: QTBUG-14554 Task-number: QTBUG-8331 Task-number: QTBUG-8329 Task-number: QTBUG-8786 Task-number: QTBUG-8787 Change-Id: I4b6403df4a0078fa385abbfab5b6c3a94f175295 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/deployment/deployment.qdoc1
-rw-r--r--doc/src/development/debug.qdoc2
-rw-r--r--doc/src/development/designer-manual.qdoc3
-rw-r--r--doc/src/images/deployment-windows-depends.pngbin106931 -> 89141 bytes
-rw-r--r--doc/src/snippets/code/src_qt3support_itemviews_q3listview.cpp2
5 files changed, 5 insertions, 3 deletions
diff --git a/doc/src/deployment/deployment.qdoc b/doc/src/deployment/deployment.qdoc
index a45c3cb..ab92171 100644
--- a/doc/src/deployment/deployment.qdoc
+++ b/doc/src/deployment/deployment.qdoc
@@ -855,6 +855,7 @@
\endlist
\o \list
\o MINGWM10.DLL - The MinGW run-time
+ \o LIBGCC_S_DW2-1.DLL
\endlist
\endtable
diff --git a/doc/src/development/debug.qdoc b/doc/src/development/debug.qdoc
index 3a29d23..6de24a0 100644
--- a/doc/src/development/debug.qdoc
+++ b/doc/src/development/debug.qdoc
@@ -85,7 +85,7 @@
be excessively large. However, with the release of Xcode 2.3 it is
now possible to use Dwarf symbols which take up a significantly
smaller amount of space. To enable this feature when configuring
- Qt, pass the \c{-dwarf-2} option to the configure script.
+ Qt, pass the \c{-dwarf2} option to the configure script.
This is not enabled by default because previous versions of Xcode
will not work with the compiler flag used to implement this
diff --git a/doc/src/development/designer-manual.qdoc b/doc/src/development/designer-manual.qdoc
index 12e292a..ace3a5f 100644
--- a/doc/src/development/designer-manual.qdoc
+++ b/doc/src/development/designer-manual.qdoc
@@ -1879,7 +1879,8 @@ pixmap property in the property editor.
\snippet examples/designer/calculatorform/calculatorform.cpp 0
We can connect signals and slots in user interface widgets in the usual
- way, taking care to prefix the \c ui object to each widget used.
+ way by adding the on_<object name> - prefix. For more information,
+ see \l{widgets-and-dialogs-with-auto-connect}.
The advantages of this approach are its simple use of inheritance to
provide a QWidget-based interface, and its encapsulation of the user
diff --git a/doc/src/images/deployment-windows-depends.png b/doc/src/images/deployment-windows-depends.png
index 56c8439..6d0b36f 100644
--- a/doc/src/images/deployment-windows-depends.png
+++ b/doc/src/images/deployment-windows-depends.png
Binary files differ
diff --git a/doc/src/snippets/code/src_qt3support_itemviews_q3listview.cpp b/doc/src/snippets/code/src_qt3support_itemviews_q3listview.cpp
index 21c077e..0167e27 100644
--- a/doc/src/snippets/code/src_qt3support_itemviews_q3listview.cpp
+++ b/doc/src/snippets/code/src_qt3support_itemviews_q3listview.cpp
@@ -105,7 +105,7 @@ while (it.current()) {
//! [7]
QList<Q3ListViewItem *> lst;
-Q3ListViewItemIterator it(myListView, Selected);
+Q3ListViewItemIterator it(myListView, Q3ListViewItemIterator::Selected);
while (it.current()) {
lst.append(it.current());
++it;