summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove unused QDeclarativePeriod header and QPlacePeriod testVolker Hilsheimer2022-09-142-218/+0
| | | | | | | | | Those classes are neither implemented nor used anywhere. Change-Id: I65e3d7be4e67a732e7ba4d2d9998699f77c7f2eb Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> (cherry picked from commit c3e0835c205bf787028ddf8bfec7c5e0330adbd0) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Fix whitespace in testVolker Hilsheimer2022-09-141-61/+61
| | | | | | | Change-Id: Icd54be6353d723a0a7d27bb69c36e318dff7f6f4 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> (cherry picked from commit 86f677e81995a5ff6c682c671d7b3009b4ef1e19) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Cleanup: remove virtual keyword from overridesVolker Hilsheimer2022-09-1433-177/+177
| | | | | | | Change-Id: Iac3ac030809f57cfcffbfcc3257551efb6c1ff0f Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> (cherry picked from commit 08f7958e9aebd6d1b827547623c94f6705bea7c2) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Make QDeclarativeGeoRoute::legs type safeVolker Hilsheimer2022-09-142-4/+5
| | | | | | | | | | We can use a QList property with a forward-declared type, so do that instead of using QList<QObject *>. Change-Id: I20d8ebbf4aa2d9ca18ae0ce7b3e6b2698dd069f2 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> (cherry picked from commit a353464c39de1ffe08147b5374d1a3c16e4d4e03) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Doc: fix type of MapItemView::autoFitViewportTasuku Suzuki2022-09-141-1/+1
| | | | | | | Change-Id: I751ac254cfa1f5ebd9b842bb2896d3f7d4a0f15e Reviewed-by: Paul Wicking <paul.wicking@qt.io> (cherry picked from commit 3c086d26838138492e8afcd766bcbdbbc17657fe) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Fix documentation warningsVolker Hilsheimer2022-09-032-4/+3
| | | | | | | Change-Id: I84052f925cf77094639d43d358b34c17c75366bd Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> (cherry picked from commit 6c3f504659333fce74b6842797c896962d120ab1) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Don't use deprecated APIs in examplesVolker Hilsheimer2022-09-025-8/+0
| | | | | | | | | | AA_EnableHighDpiScaling has no effect, High-DPI scaling is always enabled in Qt 6. Change-Id: If96d9fa94b1248ab5bd6b7800e92df82aaec6ac9 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit 19556599170fb9009c61a816fd1818b7124f5744) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Bring back QML documentation for CameraCapabilitiesVolker Hilsheimer2022-09-021-43/+63
| | | | | | | | | | | | Amends eb490443bcf13361aa3f3558f7b9772c86253bd5 by converting the documentation of the C++ getter/setter API into property documentation (as far as the respective properties are declared as such), and by bringing back the QML documentation from the previously deleted sources. Change-Id: Ifeef91e2c3f01bba983e9e02775198950e5f1d9b Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit 8e65ed2d635a5678d1b43339216991fa7f8fd074) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Remove unnecessary QML type registration data filesVolker Hilsheimer2022-09-028-2099/+2
| | | | | | | Change-Id: I788362fbd2720782d5d1a313a44a908718c9d415 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> (cherry picked from commit 7b3531ec887fdd2ccdd26d904757a314aed6e352) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Remove QDeclarativeGeoManeuverVolker Hilsheimer2022-09-0111-414/+153
| | | | | | | | | | | | | | | | | | | | | | | Register the QGeoManeuver type directly as the RouteManeuver QML type, and use it in QDeclarativeGeoRouteSegment. The type is now uncreatable. It wasn't in Qt 5.15, but since there is no setter-API that is exposed to QML (QDeclarativeGeoRouteSegment::maneuver is a read-only property tagged as CONSTANT), there is no point in creating a RouteManeuver object in QML anyway. The QML tests can get a default-created QGeoManeuever from an empty route segment. Document the C++ properties via \property, move the QML type documentation into the qgeomaneuver.cpp file, and unify the language. Note: The QML type should be routeManeuver, as value types should start with a lower-case character. If we make that change, it will be in a separate, compatibility-breaking commit for all the value types. Change-Id: I277e7011f2082e2da9e0141db9bad0a60a524c88 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit da10ee9b67aaf0c9218c2b891efa06b323866470) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Remove declarative wrapper for QGeoCameraCapabilitiesVolker Hilsheimer2022-08-314-138/+6
| | | | | | | | | | | With QGeoCameraCapabilities being a Q_GADGET, the wrapper is no longer needed. Change-Id: I6afa28e7e1026e23cc0845947415047c8bb30a32 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io> (cherry picked from commit eb490443bcf13361aa3f3558f7b9772c86253bd5) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Fix "invalid nullptr parameter" warning from QObject::connectVolker Hilsheimer2022-08-312-3/+19
| | | | | | | | | | | | | | | | The window() of the QDeclarativeGeoMap item might be nullptr when it is used in tests. And the window might also change if the item is move into a different scene. So only connect to a valid window pointer, and reconnect when the window changes. This requires that we store a pointer to the old QQuickWindow in the item, as we need to disconnect from the old window (and the QQuickItem::itemChanged doesn't provide access to the old window). Change-Id: Id79a6c19990109d3900d5e483968b4f4cd4b2fbc Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> (cherry picked from commit ba100b1265ce00991df0cfe1f4c065749b602700) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Gadgetize Map Value typesVolker Hilsheimer2022-08-3110-0/+62
| | | | | | | | | | | | | This might allow us to remove the respective declarative wrapper classes. However, QDeclarativeGeoRoute also provides access to a list of segments, the path (as a QJSValue), and the routeQuery, which are all not stored as part of QGeoRoute. Change-Id: I65a25597f7d5540fb3edf837b48de160b5dde419 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> (cherry picked from commit 38e62d40dad767cef98de704de9561e5082e413d) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Port to pointer-to-member-function connection syntaxVolker Hilsheimer2022-08-31107-556/+595
| | | | | | | | | | | | | | | | | Rename overloads that would cause conflict and require explicit overloa resolution via QOverload: - Q*Reply::error -> errorOccurred (equivalent to QNetworkReply) - Q*Engine::error -> errorOccurred (for consistency, even if no overloa - Q*Manager::error -> errorOccurred (ditto) - QDeclarativeGeoMap::copyrightChanged -> copyrightImageChanged As a drive-by, change QString value parameters to const references. Change-Id: I1ab16079842540ca0a86f711d83b35c8c56135e6 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> (cherry picked from commit ec29ae5ad6afb4a4b0507bf2f81bdcfe0fcec123) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Silence warnings in map_mouse testVolker Hilsheimer2022-08-311-18/+18
| | | | | | | | | | Qt 6's QML no longer supports implicit function parameters in signal handlers, so declare them explicitly and use arrow-function syntax. Change-Id: I5ffc14b4140d78c4f1dcc51aa5ca8f2d4e38d1d5 Reviewed-by: Alex Blasche <alexander.blasche@qt.io> (cherry picked from commit 57ce630439322d4a67e81253bb83c3d927d471b9) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Purge remaining usage of Q_NULLPTRJohannes Kauffmann2022-08-301-2/+2
| | | | | | Change-Id: Ia532f57a127d4db4be1950e86d4a54992a5c2665 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 84ff68347de0591f810b82eef0a2f6da907edec1)
* Cleanup private map typesVolker Hilsheimer2022-08-3030-405/+104
| | | | | | | | | | | | | | | Use member initialization and remove any explicit implementation of the special member functions if they are just the default. Remove some unnecessary Q_DISABLE_COPY that prevents compiler-generated versions of the special member functions. Task-number: QTBUG-105206 Change-Id: I206abd07acbbcb863a4d8099a5d8b7ff1f641079 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit 4c4ef4ae797549ac4597d4c8aeba1533c8e4c1f6) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Modernize and clean up QGeoRoute(Leg)Volker Hilsheimer2022-08-302-59/+31
| | | | | | | | | | | | | | | | | | | | Implement move semantics for QGeoRoute, make operators hidden friends, and add noexcept to non-allocating functions. Remove default-implemented constructors, operators, and destructor from QGeoRouteLeg. That class would ideally go away so that we don't have to subclass the QGeoRoute value type at all. The leg-data lives either way in the QGeoRoutePrivate(Default), so making the design so that a route can be a list of routes would remove the need for the Leg class. However, that has repercussions to the QML types, tests, documentation etc, and needs to be discussed further. Task-number: QTBUG-105206 Change-Id: I4c451a74fbf42e06b1580df46bbccca4b0de1723 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit 9f40dfe98a7d7fc37e267160ce01a8e9dbd2282c) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Clean up mix of polymorph and value semanticsVolker Hilsheimer2022-08-304-55/+0
| | | | | | | | | | | | | | | | | | | QGeoManeuver had a protected constructor only to allow the test to replace the private implementation, which is polymorph. There is no use of this possibility to override the implementation of the class outside the test. If we want to bring this back, then a factory that the service provider plugins implement and through which the framework creates the implementations would be the typical architecture, without forcing the subclassing of value types with the risk for slicing or memory leaks when destructors are not virtual. Task-number: QTBUG-105206 Change-Id: I3358da3939c43dfb83c4b2b10a792044590263f7 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit 117d4bf2bd04fb9702938233a00052b965c724a8) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Blacklist MapKeepGrabAndPreventSteal::test_flick on openSUSEVolker Hilsheimer2022-08-301-0/+5
| | | | | | | | Tests involving Flickable don't run stable in CI with older versions of Qt 6.2. Change-Id: I2f3dd4240266d47e743afbb3d67b045a42a04bb2 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
* More include cleanupVolker Hilsheimer2022-07-2931-112/+125
| | | | | | | | | | | | Remove includes of private headers from other modules where possible. Get rid of some duplicate includes, and try to group includes by module, with private includes in a separate block for better visibility where we have dependencies to private APIs. Change-Id: Ia6419bee2a2c50463dcc515f3f1590a749dfabc1 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit 43dde53b5b0dfae14bf0bde97bf4709344131acd) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Use 'const' correctlyVolker Hilsheimer2022-07-2952-113/+112
| | | | | | | | | | | Don't return or pass const copies, use either plain copies or const references. Make getters const, make variables const, and use qAsConst in ranged for loops to avoid detaches. Change-Id: If1463cf7f0077c08dedb15388d912b652c2b037c Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io> (cherry picked from commit 46c9adfd30636a4b13f5b66bbe019e51033a5f0b) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Modernize Places value typesVolker Hilsheimer2022-07-2924-299/+316
| | | | | | | | | | | | Add move semantics, turn comparison operators into hidden friends, add noexcept. Remove empty special member functions, or set them to default where they need to be provided. Task-number: QTBUG-105206 Change-Id: I2f6c537a9c840a205a0dd693317ad81221b721a6 Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io> (cherry picked from commit fc78a32507ccaa6c101dca2cc7a4d4061acea94f) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Clean up includesVolker Hilsheimer2022-07-28118-158/+303
| | | | | | | | | | | Get rid of unnecessary includes in most public, and some private headers. Forward declare what we have to, and include headers where needed in the implementation and test files. Change-Id: I7924e865b9d4ad9f8c8670605b59d5530346106e Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit 4cc11a0e593d1415c4055c4cca1964478e178fcf) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Modernize Maps value typesVolker Hilsheimer2022-07-2820-139/+183
| | | | | | | | | | | | Add move semantics, turn comparison operators into hidden friends, add noexcept. Remove empty special member functions, or set them to default where they need to be provided. Task-number: QTBUG-105206 Change-Id: I7601f6ed5aeeceb13a15094d3fb0620a2f623817 Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io> (cherry picked from commit d861d509ec2b87bd5d85bffb21d2bb0c6a151ce7) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Clean up test cases for value typesVolker Hilsheimer2022-07-278-502/+308
| | | | | | | | | | | | | | | | | | Allocating those value types via operator new and reusing a member variable just makes the code strange, and possibly leaking if a test macro returns early. Just instantiate the test objects in each member function. Remove init/cleanup functions that now don't do anything anymore, and the "destructor" test that doesn't test anything that the other tests don't already anyway. Also, trust that QList::operator== does the right thing. Task-number: QTBUG-105206 Change-Id: I1ac5e76b2338e446db30528d8f41c9a6fe55df57 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit 9bd548e0b6f19695cbfd883b42f3382247159181) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Bump plugin interface version to 6.0Volker Hilsheimer2022-07-2712-12/+12
| | | | | | | | Task-number: QTBUG-96795 Change-Id: Ib56df68b2cbc3781f49d0749fcd598bbcd96c6fb Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit 2e9045f8ce92bddce4c549e87a4adb37476933a1) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Remove unused placemacro headerVolker Hilsheimer2022-07-273-76/+1
| | | | | | | | | | The only file that includes the header doesn't use any of the macros. Task-number: QTBUG-105206 Change-Id: I3e4413050b6b4c948b6a1cd27dac73068ccc6aab Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit 09a29d2cb25c48c6ac3d34a1ffd0dff976c5fcc0) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Remove all qmake .pro files, except for examplesVolker Hilsheimer2022-07-26101-56781/+0
| | | | | | | | Task-number: QTBUG-96795 Change-Id: Ia5e73baff832eda7807d0ee7a70a10aeb5d5e830 Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io> (cherry picked from commit faea5c148820b94dc9becc1d69bb3a7f2072e926) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Reduce includes of private headers from upstream modulesVolker Hilsheimer2022-07-2620-27/+4
| | | | | | | | | | | | Removing includes that don't seem to be needed for building the code. No effort made yet in reviewing usage of private APIs to see if there are public alternatives. Change-Id: I6a41a3488aa6c2bbe6098a0ff6424627ab353686 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io> (cherry picked from commit 17576f25587fe13aa23c138f126c9dd641efd49d) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Build "places" example with cmakeVolker Hilsheimer2022-07-261-1/+1
| | | | | | | | | | | The example doesn't work, but that's not a result of the build system. It doens't work when built with qmake/make either. Task-number: QTBUG-96795 Change-Id: Ibdb73ee31bf232d45fefb068d12e0a99c871d45f Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io> (cherry picked from commit 35be9b28087a78551c16bc717fdfbbda38a2af1b) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Small improvements and fixes in different examples projectsLauri Laanmets2022-07-264-12/+12
| | | | | | | | | All examples except 'places' are ported now and work as much as I could test manually. Task-number: QTBUG-96795 Change-Id: Icebe6b1c222c68ee2a2881ae442b255360af2fae Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit a59f72c77c71fa49bdef4cd0cef8aa4158b2a8ac)
* Migrate mapviewer to Qt 6Ivan Solovev2022-07-2629-146/+174
| | | | | | | Task-number: QTBUG-96795 Change-Id: Iac955b1018d7092a7d684718bf89bb2908ee3c16 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 7504d62658da0ee8a3e376e5e6b9ecd4d6574848)
* Migrate geojson_viewer example to Qt 6Ivan Solovev2022-07-265-43/+58
| | | | | | | | | | This includes using QuickControls2 instead of QC1 and also refactoring of the code for android permission requests. Task-number: QTBUG-96795 Change-Id: I2986d5f1572d5889b15ee6b5d031d51a7b6a3da9 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 82e15358a1aaafe84b7882a8a4c084707a5fa5bb)
* Manual fixes in CMake files for examplesLauri Laanmets2022-07-265-19/+18
| | | | | | | | | | | Improvements in CMake files after they have been generated from .pro files by script. All examples except 'places' are included because 'places' example doesn't start (not ported yet). Task-number: QTBUG-96795 Change-Id: I1fab82821f499f51337440274d0b66082f614fca Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit c4712ad8c5e7701429e9184db6ec91a4008566e2)
* Doc: Remove obsolete modules from dependenciesVolker Hilsheimer2022-07-261-1/+1
| | | | | | | | Task-number: QTBUG-96795 Change-Id: Ie4e793975aef01199dae7fc56a071ea04987df71 Reviewed-by: Paul Wicking <paul.wicking@qt.io> (cherry picked from commit 2ef77097b391de7cd645968e624d1a3536867513) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Blacklist tests that are flaky on macOS ARM in CIVolker Hilsheimer2022-07-261-1/+10
| | | | | | | | | | Our ARM macOS machines in CI might not be configured correctly. Ignore them for now. Change-Id: Id3b4554c3795283d38b731a0a2c30f409cb25d9b Reviewed-by: Doris Verria <doris.verria@qt.io> (cherry picked from commit 6552cc751239893e7986826bbc82f550b50b23c3) Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Declare dependencies explicitly towards the consistent 6.2 setVolker Hilsheimer2022-07-251-10/+9
| | | | | | | | | The lts-6.2 branch confuses the Coin resolver, so explicitly make that branch get its dependencies from the consistent qt5.git super module. Change-Id: Ifd702e39378f433f62163356ecefa45e52146a11 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Replace foreach with ranged for and set QT_NO_FOREACHVolker Hilsheimer2022-07-2535-109/+116
| | | | | | | | | Make containers const where they obviously should be, iterate over references where it's clearly possible. Pick-to: dev Change-Id: Ie55a58873b48bbb60ac49790db612f85777e6ceb Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
* Blacklist flaky declarative_ui test on macOS in CIVolker Hilsheimer2022-07-251-0/+1
| | | | | | | | | | | The CI system produces flaky results and seems to run a mix of revisions for the lts-6.2 branch on some of the macOS test machines. Ignore that test for now on those platforms. Change-Id: I438c3bc46ccad3dbab411daa878c93b8b2be547e Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* Rebase 6.2 to dev and make it build against Qt 6.2Volker Hilsheimer2022-07-25605-6625/+8508
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | dev-specific changes removed or adjusted: - dev-specific updates of dependencies.yml and .qmake.conf - 1e1f7587b054cb3c3c75499f787f0bf5712af9d8 removed "Migrate to autogenerated cpp exports" - 9121d0e4b45fb3a1401554bc48c77f17ce40a7f9 removed "Plugins: port to QPluginParsedMetaData and CBOR" - parts of a0ed5f9f9c8acf1b4b631b69774ac67ac37739bc removed "Silence build warnings, fix build errors", but QColor::fromString and QJsonValueConstRef are not available in Qt 6.2 - bccfa2a147f1fd14af29c1dd57d972fa882f5046 "Mark tests failing after dependency update as expectFail" Squashed commit of the following: commit 7c00aa7aa1476fc45adc5abf54185545ecc4c14e Author: Zhang Hao <zhanghao@uniontech.com> Date: Fri Jan 7 11:21:19 2022 +0800 Porting Examples: use CMake replace qmake This commit re-enables follow examples: * places * places_list * places_map * minimal_map * itemview_transitions * planespotter Since mapviewer and geojson_viewer example need refactoring for Qt6,so this patch ignore them, but this patch will create them's CMakeList.txt file. Task-number: QTBUG-96795 Done-with: Lauri Laanmets <lauri.laanmets@eesti.ee> Pick-to: 6.2 Change-Id: Ib1385b978b243165163729668ca5d5504e81d9f9 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> commit 0f6eb503aab7494766f768fa75508a1632e23ad7 Author: Volker Hilsheimer <volker.hilsheimer@qt.io> Date: Tue Jul 5 23:36:45 2022 +0200 Enable tests on APPLE They pass locally on macOS, so perhaps they only won't work on iOS. Change-Id: I79f59e4c67aca8842ae18e8cf5a237c3976bb3d1 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> commit 787c758666048ee2e37e96af9f0a02a62afe46f6 Author: Volker Hilsheimer <volker.hilsheimer@qt.io> Date: Sat Jun 11 15:04:32 2022 +0200 In static builds, ignore tests depending on plugins Change-Id: If98f86af595d2b05bbed28f10fbbc5e056f5c56e Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> commit 95f4ea95569449653dc5f1294b7f81bcf83577bf Author: Milo Kerr <mkerrdev@gmail.com> Date: Thu Mar 25 01:45:43 2021 -0400 Update use of HTTP to HTTPS in esri plugin When accessed via HTTP, the arcgis.com endpoints return: {"error":{"code":400,"message":"HTTP not supported","details":[]}} With this change the esri plugin now accesses them via HTTPS. [ChangeLog][plugins][esri] Pick-to: 5.15 Fixes: QTBUG-92111 Change-Id: I7be0295f8c65853ab214bc11d7e6008f3137403a Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alex Blasche <alexander.blasche@qt.io> Reviewed-by: Guillaume Belz <gbelz@esri.com> commit 5343aa1e4c3c684bd881149d96175b7109d62a17 Author: Volker Hilsheimer <volker.hilsheimer@qt.io> Date: Sat Jun 11 14:09:24 2022 +0200 Skip Qt Location build for now on INTEGRITY Build errors in CI blocking progress, needs to be built locally by someone with access to the toolchain. Change-Id: Ic7b369dc99a5bda0b26c2721400fdd58e24bca68 Reviewed-by: Kimmo Ollila <kimmo.ollila@qt.io> Reviewed-by: Tatiana Borisova <tatiana.borisova@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io> commit 431aec67964a7c96538a18d3a94251505ac75f0b Author: Volker Hilsheimer <volker.hilsheimer@qt.io> Date: Fri Jun 10 23:25:05 2022 +0200 Fix build of tests in static configs The nokia geoservice plugin is linked in, which already defines the relevant symbols. Change-Id: I58ac5b268b2aa2c2dcb0d46ae83b3502daea60fa Reviewed-by: Alex Blasche <alexander.blasche@qt.io> commit d03694ccb5327df23fc4aad29e918a824c2b6fff Author: Volker Hilsheimer <volker.hilsheimer@qt.io> Date: Fri Jun 10 20:38:50 2022 +0200 Silence build warnings, fix build errors Replace various deprecated APIs with their supported Qt 6 versions. Most notably, replace QScopedPointer with std::unique_ptr, as the code frequently use deprecated QScopedPointer::swap. Change-Id: If9cb0be89423fd310073709eb390401d74240153 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io> commit 0af3e1fcc1e38abf4a176bf94da9ba966586a020 Author: Thiago Macieira <thiago.macieira@intel.com> Date: Fri Feb 11 11:34:22 2022 -0800 Make sure all private headers include at least one other See script in qtbase/util/includeprivate for the rules. Since these files are being touched anyway, I also ran the updatecopyright.pl script too. Change-Id: Ib056b47dde3341ef9a52ffff13ef677e471674b6 Reviewed-by: Lars Knoll <lars.knoll@qt.io> commit 614cbb70343c2975e5aed97344df8cab46f63b4c Author: Ivan Solovev <ivan.solovev@qt.io> Date: Tue Nov 9 19:08:43 2021 +0100 Enable QML unit-tests This commit re-enables all QML-related unit tests. Task-number: QTBUG-96795 Change-Id: I43f5e8b7d7cadc9e4ea975275b5154a499eeabb4 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Andreas Buhr <andreas.buhr@qt.io> commit 4ccd082de4f8252984bcd7e23acdaa62a7718196 Author: Ivan Solovev <ivan.solovev@qt.io> Date: Tue Feb 15 11:20:01 2022 +0100 QDeclarativeGeoMap: reorder new parameters application after camera capabilities change When the camera capabilities are changed, we try to re-apply such parameters as zoom, tilt and FOV. Each of this parameters has min and max supported values. Before this patch we first applied the maximum value, and then the minimum. This was triggering an assert in the unit tests. With this patch we will first apply the minimum value. It will help to unblock the CI, but still may trigger asserts under some conditions. So a more general fix is required. Task-number: QTBUG-96795 Change-Id: I7671981377e5a3c4f47fdbd4cf05aa540581b45f Reviewed-by: Lauri Laanmets <lauri.laanmets@eesti.ee> Reviewed-by: Andreas Buhr <andreas.buhr@qt.io> commit 9f4b31d4edad50408df4654798ed414c5a948cb5 Author: Ivan Solovev <ivan.solovev@qt.io> Date: Tue Nov 9 19:07:35 2021 +0100 Fix warnings for Windows build Task-number: QTBUG-96795 Change-Id: Ia5fe6f24f06f18141923d9466d7b2d7651fd464b Reviewed-by: Alex Blasche <alexander.blasche@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> commit f37fb62d27de52895bae718a5a2c0cc10c3178cf Author: Ivan Solovev <ivan.solovev@qt.io> Date: Fri Oct 29 18:23:27 2021 +0300 Finalize QtLocation CMake build Add missing files from declarativemaps and declarativeplaces. Reintroduce Qt.labs.location feature (currently always enabled, as I'm not sure that OpenGL is strictly required for now). Build Qt.location.labs as part of QtLocation lib when this feature is enabled. Also update build files for plugins to take this feature into account. Build QML plugins as two separate QML modules. This still requires some improvements because the code does not use QML_* macros, but an old-style qmlRegister* approach. Task-number: QTBUG-96795 Change-Id: Ib835848ca3ad551cc6d858d2bae10b9aa4df5160 Reviewed-by: Andreas Buhr <andreas.buhr@qt.io> Reviewed-by: Alexey Edelev <alexey.edelev@qt.io> commit 3030377adfccd20a01b67ef2f518fd92ef1228a9 Author: Ivan Solovev <ivan.solovev@qt.io> Date: Fri Oct 29 16:46:28 2021 +0200 Fix appendChildNode() call The QSGNode::appendChildNode() method checks that its parameter must not have a parent. Before this patch we always called appendChildNode() on a node that already had parent, which was always leading to ASSERT in a debug build. Seems that the right approach would be to call this method, if the node *does not* have a parent. Task-number: QTBUG-96795 Change-Id: I10e17d17eeadec41f8da8939f4a0009176bbbdbb Reviewed-by: Alex Blasche <alexander.blasche@qt.io> Reviewed-by: Lauri Laanmets <lauri.laanmets@eesti.ee> commit effffbf9357384b0c04f510e20a0153a512dba83 Author: Lauri Laanmets <lauri.laanmets@eesti.ee> Date: Fri Oct 1 12:09:33 2021 +0300 CoordinateAnimation East/West now swapped in Qt 6 Seems that there was a confusion about it and now swapped with commit 965c80c5db88dd94b666228d432b226c496c9d30. So, making necessary changes on the QtLocatino side as well. Task-number: QTBUG-96795 Change-Id: I1adf149a6e43dc9c80c5d07557a2378ef08a8453 Reviewed-by: Alex Blasche <alexander.blasche@qt.io> Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> Reviewed-by: Andreas Buhr <andreas.buhr@qt.io> commit 07497016d619f57f7b09feae874cf2a9ef4db651 Author: Lauri Laanmets <lauri.laanmets@eesti.ee> Date: Thu Sep 30 17:08:16 2021 +0300 Port OpenGL dependent code to Qt6 updated graphics API All 'old' map object ported to new Qt6 API and tested (almost). Labs project is not tested. This is part of a bigger work to port QtLocation maps to Qt6. Task-number: QTBUG-96795 Change-Id: I0b748a7f4c37f4fcc0cad038e2846b7c86dec84e Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io> Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> commit 903e1dd2854cbacb2fe1c30796544518eaa91192 Author: Lauri Laanmets <lauri.laanmets@eesti.ee> Date: Thu Sep 30 16:29:46 2021 +0300 Adapt QDeclarativeGeoWaypoint to use bindable coordinate property QObjectBindableProperty returns only const value and object based properties like QGeoCoordinate cannot be modified, they have to be replaced totally. This is part of a bigger work to port QtLocation maps to Qt6. Task-number: QTBUG-96795 Change-Id: I39e9d9a97d65af7daf2dca30a00d563b2bf6aa80 Reviewed-by: Andreas Buhr <andreas.buhr@qt.io> Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> commit 090a5103df5826a9d775513b41cb3c145e4e4897 Author: Alexandru Croitor <alexandru.croitor@qt.io> Date: Fri Feb 4 18:38:54 2022 +0100 Switch examples to build as isolated sub-builds part 2 qt_examples_build_begin needs the EXTERNAL_BUILD flag to know that it's safe to build examples as ExternalProjects. It still won't do it in CI until we enable building examples as ExternalProjects for prefix builds. This is preparation for that. Pick-to: 6.2 6.3 Task-number: QTBUG-90820 Change-Id: I4851a3d8b1b23d2aa1ef7135c08ae83c5276e737 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io> commit cf10be64248b7585a05edc580f855f4517b62715 Author: Andreas Buhr <andreas.buhr@qt.io> Date: Fri Feb 11 10:24:26 2022 +0100 Add required libraries to fix QNX build Change-Id: I5fdffe2826c0aa981c9fb3c1cb76be763559f34e Reviewed-by: Alexey Edelev <alexey.edelev@qt.io> commit 3ed8c2a9dc33afe119e5350f00daf01a276ca466 Author: Shawn Rutledge <shawn.rutledge@qt.io> Date: Fri Jan 14 07:15:02 2022 +0100 constructRoute: remove segmentPathLengthCount It was causing a (fatal) warning: error: variable 'segmentPathLengthCount' set but not used [-Werror,-Wunused-but-set-variable] Pick-to: 6.3 Change-Id: Ia6ce5861539f878c307630182eb671c442d14a62 Reviewed-by: Lauri Laanmets <lauri.laanmets@eesti.ee> Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> commit a86f01f99b3685c529295640f4bd7d514cf1649a Author: Thiago Macieira <thiago.macieira@intel.com> Date: Wed Jan 12 09:30:19 2022 -0800 QDeclarativeGeoMap: Fix warning about missing break Introduced in commit 18aae46a744adb4510a2b04c7322c3f66bded474 ("Mouse/touch input handling re-work"). Found by GCC 11: qdeclarativegeomap.cpp:2577:9: warning: this statement may fall through [-Wimplicit-fallthrough=] Change-Id: I0e5f6bec596a4a78bd3bfffd16c99623de12e6ec Reviewed-by: Lauri Laanmets <lauri.laanmets@eesti.ee> Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> commit 415fe606baf1ca8ff898ed769066db7fb8cf28f0 Author: Kai Köhne <kai.koehne@qt.io> Date: Fri Nov 26 15:01:50 2021 +0100 Use up-to date LGPL license header Remove usages of outdated LGPL3 header that references LICENSES.LGPLv3 instead of LICENSES.LGPL3. Change-Id: Ied647fc10d2bf051cccc8b38d75570b7caef1f28 Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io> commit 61ce51c781beff8a5a4ac9f907b16eb5cdd44ad6 Author: Lauri Laanmets <lauri.laanmets@eesti.ee> Date: Thu Sep 23 14:16:54 2021 +0300 replace int by qsizetype For "count" and "at" methods, the parameter or return type int was replaced by qsizetype. This patch adapts the code to this change. Task-number: QTBUG-96795 Change-Id: Id409ab573cce886649a72538584dfa57264e7dac Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io> commit e9e1ca9677331ac536e6e4768e371d2d7bafe5bd Author: Lauri Laanmets <lauri.laanmets@eesti.ee> Date: Thu Sep 30 15:10:00 2021 +0300 Change 'geometryChanged' to 'geometryChange' As stated by the documentation: https://doc.qt.io/qt-6/quick-changes-qt6.html#changes-to-qquickitem This is part of a bigger work to port QtLocation maps to Qt6. Task-number: QTBUG-96795 Change-Id: I9dcf2e454d949dfbf3a9861b98eb949be6e6df56 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io> Reviewed-by: Andreas Buhr <andreas.buhr@qt.io> commit 566030c47e1f4f73e17ed179caf2393821e81777 Author: Lauri Laanmets <lauri.laanmets@eesti.ee> Date: Thu Sep 30 15:20:52 2021 +0300 Change 'setBoundingBox' to 'setBoundingShape' https://doc.qt.io/qt-6/qtpositioning-changes-qt6.html#c This is part of a bigger work to port QtLocation maps to Qt6. Task-number: QTBUG-96795 Change-Id: I9c14bd39d2da95a0be6542be432b79e26906c5ed Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io> Reviewed-by: Andreas Buhr <andreas.buhr@qt.io> commit 321fe2849088e79282d0b1697826419ef1155962 Author: Lauri Laanmets <lauri.laanmets@eesti.ee> Date: Thu Sep 30 16:06:43 2021 +0300 Change QGeoPolygon 'path' to 'perimeter' https://doc.qt.io/qt-6/qtpositioning-changes-qt6.html#rename-qgeopolygon-path This is part of a bigger work to port QtLocation maps to Qt6. Task-number: QTBUG-96795 Change-Id: I34f27f7e21a3e4243b7fc08a93bc6e95d0541814 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io> Reviewed-by: Andreas Buhr <andreas.buhr@qt.io> commit b3385b73afc7ef1dc0cece451d3a577b03488ba6 Author: Lauri Laanmets <lauri.laanmets@eesti.ee> Date: Thu Sep 30 16:39:47 2021 +0300 Correct string literal comparison and concatenation This is part of a bigger work to port QtLocation maps to Qt6. Task-number: QTBUG-96795 Change-Id: Ib4c845679a9dcdd9994603076d9ba7d06c2d1c47 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io> Reviewed-by: Andreas Buhr <andreas.buhr@qt.io> commit bab4ef4a6040386174919a51deab3fe83802ca6a Author: Lauri Laanmets <lauri.laanmets@eesti.ee> Date: Thu Sep 30 17:31:02 2021 +0300 Mouse/touch input handling re-work Mouse and touch input part is re-written to support new 'exclusiveGrabber' and to be able to share different touch points between different child items. For example, one finger can pan the map and another finger can scroll child ListView or pinch can be started even when first finger touched child mouse area but started moving together with the second finger. This is part of a bigger work to port QtLocation maps to Qt6. Fixes: QTBUG-68771 Task-number: QTBUG-96795 Change-Id: Ie4022350156ab0129b6cbba0a442a19bb1ee74d9 Reviewed-by: Alex Blasche <alexander.blasche@qt.io> commit 75395d0e629f5ed64d2d0fa6d61a9814a3f2ad27 Author: Lauri Laanmets <lauri.laanmets@eesti.ee> Date: Thu Sep 30 18:51:18 2021 +0300 Code clean-up to be able to compile for Qt 6 Various minor changes about includes and re-definitions, etc, to make the compiler happy. Leaving QGeoRoutingManager doc sample code Q_OBJECT AutoMoc error for a separate patch. This is part of a bigger work to port QtLocation maps to Qt6. Task-number: QTBUG-96795 Change-Id: Ic1d22cec18660a7a01dbafe89f134bdd04574851 Reviewed-by: Alex Blasche <alexander.blasche@qt.io> commit afd4bc4606c789b5d3106192c5f2cdfc675f9b9c Author: Lauri Laanmets <lauri.laanmets@eesti.ee> Date: Thu Sep 30 19:09:16 2021 +0300 Remove QAbstractDeclarativeData::parentChanged This method was removed from qtbase in e8b7e4e96a23b87011abeb1e4f5f694654866e3f. This commit removes the usage of this method from qtlocation and attempts to achieve the same behavior by introducing a custom setParentAndNotify() method which emits the parentChanged() signal. The code is also updated to make use of the new method. This is part of a bigger work to port QtLocation maps to Qt6. Task-number: QTBUG-96795 Change-Id: I4523cf567b4510fc17473a37c689c689ee53130e Reviewed-by: Alex Blasche <alexander.blasche@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> commit 6ae0bd3c37dc7e38d9f84baf0d1f7423a8a5d8e9 Author: Lauri Laanmets <lauri.laanmets@eesti.ee> Date: Thu Oct 7 13:46:02 2021 +0300 QGeoRoutingManager doc example into snippet file QGeoRoutingManager documentation has and example code with full C++ class. This also contains Q_OBJECT macro. But this macro is checked by AutoMoc (doesn't care if it's in a comment) and gives build error that moc_ file is not included. So, moving this example code into snippet file to get over that. This is part of a bigger work to port QtLocation maps to Qt6. Task-number: QTBUG-96795 Change-Id: I581ed5df55a49ce761423eba3353b683f2e2409b Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> commit 8a4810194494b6ae941b086c285aadeb4f70ad4d Author: Ivan Solovev <ivan.solovev@qt.io> Date: Thu Oct 28 11:58:38 2021 +0200 Fix QGeoJson import/export The qgeojson test was actually failing. The following fixes to the class were done: - Improved check for invalid QVariant when importing 'bbox' object - Handle the fact that 'id' field is optional in the 'Feature' object Task-number: QTBUG-97769 Task-number: QTBUG-96795 Change-Id: I99696fc90b02f5deb5c438cf7ae93fcefd08882e Reviewed-by: Alex Blasche <alexander.blasche@qt.io> commit d18fc03c429c49bc370cd00b0ff46d871c550578 Author: Ivan Solovev <ivan.solovev@qt.io> Date: Fri Nov 5 13:20:15 2021 +0100 Fix warnings that break Windows build Windows machines in the CI have more strict rules for dealing with warnings. Most of them are treated as errors. This patch fixes such warnings. Task-number: QTBUG-97769 Change-Id: I9432d266a0b019512c38009ff2395b51071c59bf Reviewed-by: Alex Blasche <alexander.blasche@qt.io> commit 59323370dacd666ef728e5462772944cbac56cba Author: Ivan Solovev <ivan.solovev@qt.io> Date: Wed Oct 27 17:55:30 2021 +0200 Build minimal subset of QtLocation with unit-tests Build src/location/maps and src/location/places with a minimum subset of required src/location/declarativemaps files. Also build all plugins except mapbox-gl. Enable all non-QML unit-tests. Task-number: QTBUG-97769 Change-Id: I7c70584376c688efd2e1d046186732a7399e12d9 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alex Blasche <alexander.blasche@qt.io> commit 955dc3ccd0afb706070ab04ce4c4cc1305df68e0 Author: Ivan Solovev <ivan.solovev@qt.io> Date: Mon Oct 25 12:47:39 2021 +0200 QtLocation: adapt to build with external QtPositioning This includes fixing some includes to use the full path to QtPositioing/private/header_name_p.h and also fixes related to the reworked clipper wrapper. Task-number: QTBUG-97084 Change-Id: I15ce8d739beb2f190df9f5af01a7cb1642a6b2a2 Reviewed-by: Alex Blasche <alexander.blasche@qt.io> commit 378663d170d99c469ce132887176061d20af142a Author: Kai Köhne <kai.koehne@qt.io> Date: Tue Aug 24 16:18:50 2021 +0200 Doc: Remove unsupported customFilters customFilters defined in .qdocconf are not supported anymore by Qt Assistant since Qt 5.13. Therefore remove them from all .qdocconf files, also to avoid cargo-culting them to new help modules. Task-number: QTBUG-95987 Change-Id: Id90c1af24bb4f7c11c4ea6edfe446e642adc61a2 Reviewed-by: Paul Wicking <paul.wicking@qt.io> commit 73ca860a198c90c8807085d1b521f814fa7321e8 Author: Edward Welbourne <edward.welbourne@qt.io> Date: Fri Jul 24 15:05:37 2020 +0200 Adapt to new pointer event API in Qt6 Change-Id: If15b854adeece1a3c2151edceb45718cd7289c8f Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io> commit de1521a7dd8252f40f56f584a0a1fbb42b8c64d4 Author: Assam Boudjelthia <assam.boudjelthia@qt.io> Date: Mon Jun 7 12:26:35 2021 +0300 Use new permission api instead of androidextras Change-Id: I64eeb909ef8c034defccebb29f767c69778f501d Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io> Change-Id: Ie5839f8fdaf2d0ef5dfc22e0b406fd1fac6f966e Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
* Remove QtPositioning module from qtlocation.git6.2.46.2.36.2.26.2Ivan Solovev2021-11-02449-68223/+16
| | | | | | | | | | | | | | | Turns out that our CI does not support repos without any tests. This is treated like an error and leads to integration failure. This patch fixes it by disabling tests in coin/module_config.yaml. This config should be fixed when QtLocation tests are enabled Task-number: QTBUG-97084 Change-Id: Ib06e865fe2836806bbbee34345f06b471dd48660 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alex Blasche <alexander.blasche@qt.io> (cherry picked from commit 23f32792ad53e23bbafbff6d7667f0bb0f69fc53)
* Update dependencies on '6.2' in qt/qtlocationQt Submodule Update Bot2021-10-271-3/+3
| | | | | Change-Id: Ie97f8dee01800771b28cee2dc6114acd73270836 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.2' in qt/qtlocationQt Submodule Update Bot2021-10-261-3/+3
| | | | | Change-Id: I643e38577776ec7bb7af26e6584b0fc93c4852f4 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.2' in qt/qtlocationQt Submodule Update Bot2021-10-261-3/+3
| | | | | Change-Id: Icc0a81d83e2065ea4796ad4568367f503a944cd1 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.2' in qt/qtlocationQt Submodule Update Bot2021-10-251-3/+3
| | | | | Change-Id: If12bc93a0894d6b02ec249ff9f57943ef65fe044 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.2' in qt/qtlocationQt Submodule Update Bot2021-10-251-3/+3
| | | | | Change-Id: I419f3e121c08fda734dc300c3a30efb3c1e6c66a Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.2' in qt/qtlocationQt Submodule Update Bot2021-10-201-3/+3
| | | | | Change-Id: Ic941a4bcc65533ef8fa67fec816d6dfbc40d7a58 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.2' in qt/qtlocationQt Submodule Update Bot2021-10-201-3/+3
| | | | | Change-Id: I9edff8e310793a891566dcb3927d98e63a45e645 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.2' in qt/qtlocationQt Submodule Update Bot2021-10-121-3/+3
| | | | | Change-Id: I73cdcd751981a1680b86f00f000ba40f253ed158 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>