qt5base-lts/examples/widgets/itemviews
Marc Mutz 6d65b2cc8c Use QStringList::join(QChar) overload where applicable [examples]
This is an automated change performing the following replacements:
                    join\("(.)"\) -> join('\1')
  join\(QLatin1String\("(.)"\)\)  -> join(QLatin1Char('\1'))
  join\(QStringLiteral\("(.)"\)\) -> join(QLatin1Char('\1'))

Change-Id: I1d0c9782cc1522d937b930531720e32d4c8f7ce8
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
2012-09-23 23:30:03 +02:00
..
addressbook Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
basicsortfiltermodel Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
chart Use QStringList::join(QChar) overload where applicable [examples] 2012-09-23 23:30:03 +02:00
coloreditorfactory Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
combowidgetmapper Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
customsortfiltermodel Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
dirview Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
editabletreemodel Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
fetchmore Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
frozencolumn Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
interview Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
pixelator Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
puzzle Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
simpledommodel Use QStringList::join(QChar) overload where applicable [examples] 2012-09-23 23:30:03 +02:00
simpletreemodel Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
simplewidgetmapper Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
spinboxdelegate Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
spreadsheet Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
stardelegate Change copyrights from Nokia to Digia 2012-09-22 19:20:11 +02:00
itemviews.pro Moving .qdoc files under examples/widgets/doc 2012-08-20 12:20:55 +02:00
README Moving .qdoc files under examples/widgets/doc 2012-08-20 12:20:55 +02:00

Item views are widgets that typically display data sets. Qt 4's model/view
framework lets you handle large data sets by separating the underlying data
from the way it is represented to the user, and provides support for
customized rendering through the use of delegates.


Documentation for these examples can be found via the Examples
link in the main Qt documentation.