qt5base-lts/examples
Lars Knoll df853fed66 Use qsizetype in QList
The change creates a slight source incompatibility. The main
things to take care of are

* code using printf statements on list.size(). Using qsizetype in
printf statements will always require a cast to work on both 32
and 64 bit.
* A few places where overloads now get ambiguous. One example is
QRandomGenerator::bounded() that has overloads for int, uint and
double, but not int64.
* Streaming list.size() to a QDataStream will change the format
depending on the architecture.

[ChangeLog][QtCore][QList] QList now uses qsizetype to index into
elements.

Change-Id: Iaff562a4d072b97f458417b670f95971bd47cbc6
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
2020-07-06 21:31:14 +02:00
..
aggregate install a sane top-level examples.pro file 2012-12-11 13:37:57 +01:00
corelib Use QList instead of QVector in examples 2020-06-23 14:01:11 +02:00
dbus Regenerate examples 2020-02-04 18:50:39 +00:00
embedded Use qsizetype in QList 2020-07-06 21:31:14 +02:00
gui Regenerate examples 2020-02-04 18:50:39 +00:00
network Use qsizetype in QList 2020-07-06 21:31:14 +02:00
opengl Introduce platform API abstraction for QOpenGLContext 2020-07-02 10:27:50 +02:00
qmake Add cmdline feature to qmake 2019-02-18 07:12:14 +00:00
qpa Replace calls to deprecated QEvent accessor functions 2020-06-08 19:11:51 +02:00
qtconcurrent Fix warnings in QtConcurrent image scaling example 2020-07-01 14:57:43 +02:00
qtestlib Regenerate examples 2020-02-04 18:50:39 +00:00
sql Replace calls to deprecated QEvent accessor functions 2020-06-08 19:11:51 +02:00
vulkan Use QList instead of QVector in examples 2020-06-23 14:01:11 +02:00
widgets Use qsizetype in QList 2020-07-06 21:31:14 +02:00
xml examples: avoid int -> QChar conversions 2020-04-29 10:10:36 +02:00
CMakeLists.txt cmake: add examples/opengl 2019-10-07 07:22:17 +00:00
examples.pro Doc: Move touch examples around so they get included in docs 2018-09-14 03:56:22 +00:00
README Remove more references to demos. 2011-07-08 15:36:26 +02:00

Qt is supplied with a number of example applications that have been
written to provide developers with examples of the Qt API in use,
highlight good programming practice, and showcase features found in each of
Qt's core technologies.


Documentation for examples can be found in the Examples section
of the Qt documentation.