diff options
Diffstat (limited to 'doc/src')
-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/images/deployment-windows-depends.png | bin | 106931 -> 89141 bytes | |||
-rw-r--r-- | doc/src/snippets/code/src_qt3support_itemviews_q3listview.cpp | 2 |
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 Binary files differindex 56c8439..6d0b36f 100644 --- a/doc/src/images/deployment-windows-depends.png +++ b/doc/src/images/deployment-windows-depends.png 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; |