diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-05-07 17:21:48 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-05-07 17:21:48 (GMT) |
commit | 28b03c7a25c9fd268ed9fca88b76a30cbdb0ecc2 (patch) | |
tree | abbcc3ce796d7647f8438514d628b982afd385f2 /doc/src/snippets/code | |
parent | 6ff95852da22ba8843a2913c92aa37af36236ca0 (diff) | |
parent | a260024eeb58b1b70ff8083773d9c34434cb360a (diff) | |
download | Qt-28b03c7a25c9fd268ed9fca88b76a30cbdb0ecc2.zip Qt-28b03c7a25c9fd268ed9fca88b76a30cbdb0ecc2.tar.gz Qt-28b03c7a25c9fd268ed9fca88b76a30cbdb0ecc2.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (143 commits)
My 4.7.0 changelog entries.
qdoc: Fixed annotated list generation to use <td>, not <th>.
Doc: Tuning search script
qdoc: Reorganized examples panel.
Doc: Chages to search feature, css and table order
QtDeclarative: avoid waiting for a network load on URIs with empty schemes.
QtDeclarative: RFC 3986 requires schemes to be considered case-insensitively
Add some debugging (disabled) to QUrl::resolved
tst_qxmlquery: Fix misuse of absolute paths as URLs
QUrl::fromLocalFile: fix silly mistake: it's fromNativeSeparators, not to
my changes
Make QCompleter cope with restricted screen real estate (mobile devices)
Don't initialize Wintab if QT_NO_TABLETEVENT is defined.
QDBusXmlGenerator: get the true name from QMetaType for the return type
Add missing newline to static XML snippet
Fix compilation in C++0x mode (narrowing of constants)
My changelog entries for core and network
Doc: updating html and search feature
my changelog
Doc - mention vcsubdirs as a possible value for TEMPLATE
...
Diffstat (limited to 'doc/src/snippets/code')
-rw-r--r-- | doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp b/doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp index 22ea240..e3ad483 100644 --- a/doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp +++ b/doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp @@ -67,3 +67,23 @@ beginInsertColumns(parent, 6, 8); //! [5] beginRemoveColumns(parent, 4, 6); //! [5] + + +//! [6] +beginMoveRows(sourceParent, 2, 4, destinationParent, 2); +//! [6] + + +//! [7] +beginMoveRows(sourceParent, 2, 4, destinationParent, 6); +//! [7] + + +//! [8] +beginMoveRows(parent, 2, 2, parent, 0); +//! [8] + + +//! [9] +beginMoveRows(parent, 2, 2, parent, 4); +//! [9] |