[qt/qt-creator/qt-creator]: Summary of bulk changes made
KDE Git Services - Bulk Change <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git repository change summary for qt/qt-creator/qt-creator Pushed by mirror-service into branch '20.0'. Changed from 5bb960ca5cad2a60bded3f284eee2706deb58c66 to 8b1a0b702195d1d4c494078b700e6a75138e08ab Acknowledgement was received that this change introduces only existing code that has been pushed to another public open source repository. This change contains the following new commits: Git commit 22df9a68cb73b72cec0bc0ddd632d6613fcd928d by hjk on 23/07/2026 at 07:38.. FakeVim: Keep relative line numbers aligned with the text The relative-number column positioned each number by accumulating an assumed per-line height (the first visible block's height times its line count). That drifts out of alignment with the actual text once a line has a different height, e.g. one containing CJK glyphs, or once a line soft-wraps. Position each number at the block's actual location from the editor's layout via cursorRect() instead, so the numbers follow the text regardless of line height or wrapping. Assisted-by: Claude Code Fixes: QTCREATORBUG-26802 Change-Id: I1744e370d522d01ea900420b757339256ff29a1a Reviewed-by: Marcus Tillmanns <[email protected]> (cherry picked from commit 3cd8b484221289eb2b99c7d1ba406585b188b734) Reviewed-by: Eike Ziller <[email protected]> https://invent.kde.org/qt/qt-creator/qt-creator/-/commit/22df9a68cb73b72cec0bc0ddd632d6613fcd928d Git commit 593fa42eec420f9623a115c0d17a677f66bf17b4 by Cristian Adam on 23/07/2026 at 07:43.. CMakePM: Verify test preset repeat uses colon-separated format The number was passed to ctest CLI as `--repeat <mode> --count 5` instead of `--repeat <mode>:5`. Assisted-by: Opencode (qwen 3.6 35b) Change-Id: I3f1b5029cf2219c4833ac7913d156402cafb5441 Reviewed-by: Alexandru Croitor <[email protected]> Reviewed-by: Eike Ziller <[email protected]> https://invent.kde.org/qt/qt-creator/qt-creator/-/commit/593fa42eec420f9623a115c0d17a677f66bf17b4 Git commit 8b1a0b702195d1d4c494078b700e6a75138e08ab by hjk on 23/07/2026 at 11:48.. Debugger: Recognize namespaced Qt types in the dumper The dumper assumes a Qt namespace string carries its trailing "::" (qtNamespace() is concatenated directly onto type names, and stripNamespaceFromType() strips it to route e.g. "qtns::QString" to the QString dumper). The value however comes from the mkspec QT_NAMESPACE, which is the bare namespace name ("qtns"), and the runtime namespace auto-detection that used to append "::" is disabled. So for a namespaced Qt build no pretty dumper matched: QString and friends showed as raw structs, and expanding them was slow because gdb walked the whole struct. Normalize the received namespace to include "::" once. Empty (non- namespaced) namespaces are left untouched, so the common case is unchanged. Fixes: QTCREATORBUG-33211 Fixes: QTCREATORBUG-33212 Assisted-by: Claude Code Change-Id: I72976d6272ec88df31a65390c948cfa0aa36d5c9 Reviewed-by: Christian Stenger <[email protected]> https://invent.kde.org/qt/qt-creator/qt-creator/-/commit/8b1a0b702195d1d4c494078b700e6a75138e08ab