diff options
author | artoka <arto.katajasalo@digia.com> | 2011-12-13 11:02:52 (GMT) |
---|---|---|
committer | Qt Commercial Integration <QtCommercial@digia.com> | 2012-01-31 10:25:07 (GMT) |
commit | b10d3383b8dcfafae5adad2f373cc986cc3e66cf (patch) | |
tree | f0170e50772e4152f10699a46699b8eddff507c9 /doc | |
parent | 3e42111e96e18fd60ec6d6b8b386c2f4a4b401ac (diff) | |
download | Qt-b10d3383b8dcfafae5adad2f373cc986cc3e66cf.zip Qt-b10d3383b8dcfafae5adad2f373cc986cc3e66cf.tar.gz Qt-b10d3383b8dcfafae5adad2f373cc986cc3e66cf.tar.bz2 |
Various qt documentation fixes (wk 42)
Fixes for bugs: QTBUG-8673, QTBUG-18101, QTBUG-14194, QTBUG-9109,
QTBUG-8331, QTBUG-8329, QTBUG-8786, QTBUG-8787, QTBUG-21295,
QTBUG-14554, QTBUG-19367, QTBUG-8323, QTBUG-9466, QTBUG-7924
and QTBUG-20355.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/deployment/deployment.qdoc | 1 | ||||
-rw-r--r-- | doc/src/development/debug.qdoc | 2 | ||||
-rw-r--r-- | doc/src/development/designer-manual.qdoc | 3 | ||||
-rw-r--r-- | doc/src/snippets/code/src_qt3support_itemviews_q3listview.cpp | 2 |
4 files changed, 5 insertions, 3 deletions
diff --git a/doc/src/deployment/deployment.qdoc b/doc/src/deployment/deployment.qdoc index d9b169c..193097b 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 f89d522..3526db37 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 9a90c79..bb02668 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 07559cc..925c476 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; |