summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorartoka <arto.katajasalo@digia.com>2011-12-13 13:02:52 +0200
committerQt Commercial Integration <QtCommercial@digia.com>2012-01-31 12:25:07 +0200
commitb10d3383b8dcfafae5adad2f373cc986cc3e66cf (patch)
treef0170e50772e4152f10699a46699b8eddff507c9 /doc
parent3e42111e96e18fd60ec6d6b8b386c2f4a4b401ac (diff)
Various qt documentation fixes (wk 42)
Diffstat (limited to 'doc')
-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/snippets/code/src_qt3support_itemviews_q3listview.cpp2
4 files changed, 5 insertions, 3 deletions
diff --git a/doc/src/deployment/deployment.qdoc b/doc/src/deployment/deployment.qdoc
index d9b169c761..193097bfb6 100644
--- a/doc/src/deployment/deployment.qdoc
+++ b/doc/src/deployment/deployment.qdoc
@@ -853,6 +853,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 f89d522652..3526db372d 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 9a90c7990a..bb02668316 100644
--- a/doc/src/development/designer-manual.qdoc
+++ b/doc/src/development/designer-manual.qdoc
@@ -1878,7 +1878,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/snippets/code/src_qt3support_itemviews_q3listview.cpp b/doc/src/snippets/code/src_qt3support_itemviews_q3listview.cpp
index 07559cc45a..925c476232 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;