aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlmodels/qqmlchangeset.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add security header for src/qmlmodelsFabian Kosmale2025-09-161-0/+1
| | | | | | | | | | | | As we assume that all QML comes from trusted sources, everything remains at the default "signicant" security level. The exception are the module headers which only include other headers and add a few defines. QUIP: 23 Fixes: QTBUG-136203 Pick-to: 6.10 6.9 6.8 Change-Id: Ib1a2abbb94dbb25420f03e01a2b444f89517a902 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Doc: Use \relates for functions and macros in the global scopeTopi Reinio2023-03-291-0/+4
| | | | | | | | | | | | | This addresses the recent warnings introduced by a change to QDoc: src/qmlmodels/qqmlchangeset_p.h:120: (qdoc) warning: No documentation generated for function 'operator<<' in global scope. src/qml/doc/src/qmlfunctions.qdoc:534: (qdoc) warning: No documentation generated for macro 'QML_SEQUENTIAL_CONTAINER' in global scope. Pick-to: 6.5 Change-Id: I437933f797efc7569eb402e5c31cce8c2ba7d301 Reviewed-by: Paul Wicking <paul.wicking@qt.io>
* Use SPDX license identifiersLucie Gérard2022-06-111-38/+2
| | | | | | | | | | | | Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Pick-to: 6.4 Task-number: QTBUG-67283 Change-Id: I63563bbeb6f60f89d2c99660400dca7fab78a294 Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
* QQmlChangeSet: don't leak nospace() from operator<<Mitch Curtis2022-06-021-4/+6
| | | | | | | | Save the state with QDebugStateSaver. Pick-to: 6.2 6.3 Change-Id: Ie25f92dd72e480f5976a4230409ebea29635ef8f Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
* Move model types into their own libraryUlf Hermann2019-05-021-0/+583
The model types are not part of the core QML runtime and should only be loaded if you explicitly import them. We cannot enforce that in Qt5 as some of them are available from the QtQml import, but we can change it in Qt6. Change-Id: I1e49e84d748e352537ec2d4af901c034c91d038f Reviewed-by: Erik Verbruggen <erik.verbruggen@me.com>