qtdeclarative/examples
Friedemann Kleint 203acb1955 Fix building the d3d11underqml example with MinGW
Fix format mismatch
qtdeclarative/examples/quick/scenegraph/d3d11underqml/d3d11squircle.cpp:369:16: error: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'HRESULT' {aka 'long int'} [-Werror=format=]
          qFatal("Failed to create buffer: 0x%x", hr);
by casting to uint (as is done in an existing qWarning()).

Pick-to: 6.0
Change-Id: I9bed3066936af8a1831b695a76d40989a834fde9
Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
2020-11-26 20:29:37 +01:00
..
qml qmlfunctions.qdoc: Add clarification to QML_FOREIGN 2020-11-23 14:29:02 +01:00
qmltest CMake: Regenerate examples to set the WIN32_EXECUTABLE property 2020-10-26 23:38:39 +01:00
quick Fix building the d3d11underqml example with MinGW 2020-11-26 20:29:37 +01:00
.prev_CMakeLists.txt Add qt6_add_qml_module() public API 2019-09-19 08:06:24 +00:00
CMakeLists.txt Convert Examples 2019-08-23 13:51:06 +00:00
README
examples.pro

README

The Qt Quick module provides the basic elements to specify and implement your
user interface declaratively, using the Qt Meta-Object Language (QML). The
Qt QML module provides the engine and language infrastructure for QML itself.
This language is very expressive and human readable, and can be used by
designers to actually implement their UI vision. QML UIs can integrate
with C++ code in many ways, including being loaded as a part of a C++ UI
and loading data models from C++ and interacting with them.

Mostof these examples can be viewed directly with the
QML viewer utility, without requiring compilation.

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