summaryrefslogtreecommitdiff
path: root/doc/src/frameworks-technologies/model-view-programming.qdoc
diff options
context:
space:
mode:
authorDavid Boddie <david.boddie@nokia.com>2010-10-08 18:37:15 +0200
committerDavid Boddie <david.boddie@nokia.com>2010-10-08 18:37:15 +0200
commite8cbed0e9cb3f074405bdc67772d449e312a3b78 (patch)
treefda6403b2ff35c10e12098aa566fa4afeae7ad56 /doc/src/frameworks-technologies/model-view-programming.qdoc
parent436d41eabc5c4953f578c9ca1cbfb065d6fe8612 (diff)
downloadqt4-tools-e8cbed0e9cb3f074405bdc67772d449e312a3b78.tar.gz
Doc: Fixed documentation style and qdoc warnings.
Task-number: QTBUG-12071
Diffstat (limited to 'doc/src/frameworks-technologies/model-view-programming.qdoc')
-rw-r--r--doc/src/frameworks-technologies/model-view-programming.qdoc12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/src/frameworks-technologies/model-view-programming.qdoc b/doc/src/frameworks-technologies/model-view-programming.qdoc
index 6de567cd12..cc98432ded 100644
--- a/doc/src/frameworks-technologies/model-view-programming.qdoc
+++ b/doc/src/frameworks-technologies/model-view-programming.qdoc
@@ -32,7 +32,7 @@
/*!
\page model-view-programming.html
- \ingroup qt-basic-concepts
+ \ingroup qt-basic-concepts
\title Model/View Programming
\brief A guide to Qt's extensible model/view architecture.
@@ -1635,7 +1635,7 @@
contain the text given in the search string. This pattern can also be
used in the list and table widgets.
- \section1 Using drag & drop with item views
+ \section1 Using Drag and Drop with Item Views
Qt's drag and drop infrastructure is fully supported by the model/view framework.
Items in lists, tables, and trees can be dragged within the views, and data can be
@@ -1715,7 +1715,7 @@
of QAbstractItemModel::removeRows(), either directly or by inheriting the
implementation from its base class.
- \section3 Enabling drag & drop for items
+ \section3 Enabling drag and drop for items
Models indicate to views which items can be dragged, and which will accept drops,
by reimplementing the QAbstractItemModel::flags() function to provide suitable
@@ -2154,7 +2154,7 @@
models to supply some unique identifier to this function to ensure that
the model index can be re-associated with its corresponding item later on.
- \section2 Drag & drop support and MIME type handling
+ \section2 Drag and drop support and MIME type handling
The model/view classes support drag and drop operations, providing default behavior
that is sufficient for many applications. However, it is also possible to customize
@@ -2283,7 +2283,7 @@
\endlist
For more information about drag and drop with item views, refer to
- \l{Using drag & drop with item views}.
+ \l{Using drag and drop with item views}.
\section3 Convenience views
@@ -2294,7 +2294,7 @@
the existing contents with the data being transferred, the underlying model
will set the data of the target items rather than insert new rows and columns
into the model. For more information on drag and drop in convenience views,
- you can see \l{Using drag & drop with item views}.
+ you can see \l{Using drag and drop with item views}.
\section2 Performance optimization for large amounts of data