summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* QResource: use qint64 for lastModifiedHEADdevThiago Macieira7 hours1-4/+4
| | | | | | | | We pass it to QDateTime::fromMSecsSinceEpoch, which is signed. Change-Id: I6979d02a7395405cbf23fffd17c992674c6321fc Reviewed-by: Ahmad Samir <a.samirh78@gmail.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@gmx.de>
* QResource: remove unnecessary mutable markersThiago Macieira7 hours1-4/+4
| | | | | | | | | | | These are all modified by ensureInitialized() and ensureChildren(), which are const. However, ensureInitialized() does a const_cast<> on the object before calling non-const load(), which is where these are modified. Change-Id: I6979d02a7395405cbf23fffd17c992546ecbda49 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@gmx.de> Reviewed-by: Ahmad Samir <a.samirh78@gmail.com>
* Select a list item instead of a row for the list testIngo Klöcker10 hours1-1/+2
| | | | | | | | | In a list view each row contains exactly one element. Using selectRow feels like wrong API for a list view. Use the select function of the selection interface instead. Change-Id: Id53091c797b89f0919b5d6441c98349e4989a495 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* QBitArray: use new comparison helper macrosTatiana Borisova11 hours5-89/+116
| | | | | | | | | | Replace public friend operators operator==(), operator!=() of QBitArray to friend method comparesEqual() and Q_DECLARE_EQUALITY_COMPARABLE macro. Task-number: QTBUG-120304 Change-Id: I6b47111c144016b3aa05f01c8035c32d164291ad Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
* Widgets focus abstraction: Skip isFocusChainConsistent w/o logging catAxel Spoerl12 hours2-1/+7
| | | | | | | | | | | | | | | | | | QWidgetPrivate::isFocusChainConsistent() iterates over QApplication::allWidgets() to identify and log inconsistencies. In applications with many widgets, this has a major performance impact. Disable the check and return true, unless the logging category qt.widgets.focus is enabled. Adapt tst_QWidget::focusAbstraction() to enable the logging category. This amends 58d5d4b7c2faaeaa2c2ccdabb3da6d37f9db880a. Fixes: QTBUG-124666 Change-Id: Ia487b381ab45b052638b189bf56acaf4353b1a37 Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@qt.io>
* tst_QGraphicsProxyWidget::hoverEnterLeaveEvent remove setActiveWindow()Frédéric Lefebvre12 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Id5e601b2c95a25614149bd54707e9bc070979f89 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QListView::moveLastRow remove QApplicationPrivate::setActiveWindowFrédéric Lefebvre12 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I72a5b4ae7f47374cd6b84b7c212a93b6d1e2f607 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QListView::task262152_setModelColumnNavigate remove setActiveWindowFrédéric Lefebvre12 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ia6f812acd7a32804ad4cd0fc859ac6a507774da8 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QListView::shiftSelectionWithItemAlignment remove setActiveWindow()Frédéric Lefebvre12 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I7cf230e46588a47a972dff8f4e40217390dcacc1 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QListView::keyboardSearch() remove setActiveWindow()Frédéric Lefebvre12 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I9b4b56e47869d3751fa4498349c199b164481168 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QItemDelefate::testLineEditValidate() remove setActiveWindow()Frédéric Lefebvre12 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I212eedf0f6101b40c22c6afdeb2d434f0e762889 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* Revert "QCommonStyle: paint arrows with anti-aliasing"Axel Spoerl12 hours1-4/+5
| | | | | | | | | | | This reverts commit 74e8f673b827c57ebf2bf802840c19e4a1ac848b. Reason for revert: the change as is makes the rendering of arrows in the styles unpleasantly blurry. Pick-to: 6.7 Change-Id: I59ccd7373631a550276465caffb7d3074ff5893c Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* metal: Tie drawable's MTLTexture lifetime to MTLCommandBufferTor Arne Vestbø12 hours1-0/+10
| | | | | | | | | | | | | | By default we define QRHI_METAL_COMMAND_BUFFERS_WITH_UNRETAINED_REFERENCES, which means we create MTLCommandBuffer via commandBufferWithUnretainedReferences. In this case, if Metal API validation diagnostics is enabled in Xcode, the texture is released before the command buffer is done with it, so we manually ensure the lifetime of the texture extends until the command buffer is complete. Pick-to: 6.7 Change-Id: I9b9efa96b4a004f43e0b72144aafc4b440c7fbb4 Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
* Avoid including qversiontagging.h in QtCore module headerAlexey Edelev12 hours1-0/+4
| | | | | | | | The header is already included in qglobal.h Task-number: QTBUG-124346 Change-Id: Id713cdecd4c3221edc32402cb874ab0d98a86f82 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
* tst_QGraphisScene::update2 remove QApplicationPrivate::setActiveWindowFrédéric Lefebvre12 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ia4b06a5692eef21d0115c8efcc6fb0b074c349f5 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QGraphicsScene::hoverEvents_parentChild() remove setActiveWindow()Frédéric Lefebvre12 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I6b99542e8bc287030eb150e998311755d9d72a1b Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QGraphicsScene::hoverEvents_siblings() remove setActiveWindow()Frédéric Lefebvre12 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ic1447c4ed8cd33a96fedf775abb363cc99b347d6 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QGraphicsScene::removeItem() remove setActiveWindow()Frédéric Lefebvre12 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I175883b12d2a3bcb492dea8fc190e31dbfea821a Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QFileDialog2::dontShowCompleterOnRoot() remove setActiveWindow()Frédéric Lefebvre12 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ie16a0ef8fb2209ed1f1253825519be2c8b02101f Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* QSaveFile: don't reset fileEngine after commit()David Faure13 hours2-4/+28
| | | | | | | | | | | [ChangeLog][QtCore][QSaveFile] Member functions such as fileTime() and size() now continue to work after commit(). Fixes: QTBUG-66605 Fixes: QTBUG-77039 Change-Id: I0b17eae9493911d1a0828b589d762bd8eb344bce Reviewed-by: Ahmad Samir <a.samirh78@gmail.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
* QThread: Introduce static isMainThread() helperJarek Kobus13 hours6-4/+30
| | | | | | | | | | | | Useful for QtCreator, as a replacement for Utils::isMainThread() inside threadutils.h, may serve for other projects, too. Introduce static QCoreApplicationPrivate::theMainThreadId atomic helper field holding the id of the main thread. Change-Id: Iccc0302f423f47b5ecad86c4cd3de4d1ee36155f Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
* QThread: Introduce isCurrentThreadFabian Kosmale13 hours4-0/+45
| | | | | | | | | | This allows a more efficient way of checking whether a thread is the currently executing one (without using private API). Change-Id: I007edae6b258d7e42e901fa720d4f3cf9fe25a49 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io> Reviewed-by: David Faure <david.faure@kdab.com>
* tst_QAbstractItemView::testClickedSignal() remove setActiveWindow()Frédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Iffeab55db85304e6e467912505c2582df4378993 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* QTBUG6407_extendedSelection() remove setActiveWindow()Frédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I073cbf74f11c3492444ecd94655e6b1e4e75611d Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QAbstractItemView::task221955_selectedEditor remove setActiveWindowFrédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I6a4bad1537c8298649598fc3ceecfb6086842b7e Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QAbstractItemView::setItemDelegate() remove setActiveWindow()Frédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ib7de6df3dc330ff8e3eff7a901eca535a4f22a2d Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* task250119_shortcutContext() remove setActiveWindow()Frédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ie98bdf64973eeac91dd914af7af347cccb0ad5d3 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QCompleter::focusIn() remove QApplicationPrivate::setActiveWindow()Frédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I129183b6e65da297d457fbebfeba940daffc9b3d Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QCompleter::multipleWidgets() remove setActiveWindow()Frédéric Lefebvre13 hours1-2/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I14898d6eb791ba455e21fae424d59b6799aef94a Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* QTBUG36933_brokenPseudoClassLookup() remove setActiveWindow()Frédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I32991b158685d2aa6a9ced225f97ff9f0e6b13d3 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* task232085_spinBoxLineEditBg() remove setActiveWindow()Frédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I8f941c2188563f72f1ff261a8d68bb0e62ae18fd Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QStylesheetStyle::complexWidgetFocus() remove setActiveWindow()Frédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I9fc6957376a0e42958e0f4c93025058f9f67bf20 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QStylesheetStyle::tooltip() remove setActiveWindow()Frédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Icad230fe31f7bf06e2f2af462297227b5f47eb63 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QStylesheetStyle::hoverColors remove setActiveWindow()Frédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I264c1703a0396356f6e17a3122b71bcb8f1813ad Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QStylesheet::focusColors() remove setActiveWindow()Frédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Idaca35d27b843c47f4c5f88a5a68c01b3cd8fb37 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QWidget_window::tst_dnd() remove setActiveWindow()Frédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I2acc02ebd0434de54344fa1e5fa488e7cd81c106 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QTooltip::qtbug64550_stylesheet() remove setActiveWindow()Frédéric Lefebvre13 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I84928725fb9b6d834439aa8a64171dcf3f7a042e Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* QTest: replace the majority of the ugly QCOMPARE_xx macroThiago Macieira13 hours1-19/+43
| | | | | | | | | | | | | | | | | | Using templates to make the code look nicer and be more debuggable. Previously, if you tried to step into the QCOMPARE_xx, you'd have the creations of qxp::function_ref from the lambdas before you got to the actual comparison. And all of this was in-place from macro expansion, so you couldn't tell what was happening. Now, if you step into QCOMPARE_xx, you go to qCompareOp. There are 5 frames between that point and the actual comparison (four std::forward() and the Compare::compare()) and debuggers could step over std::forward. Even if they can't, both libstdc++ and libc++ implementations are simple casts, so there's nothing more to step into. Change-Id: I12a088d1ae424825abd3fffd171dbbf7adb7e7e2 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
* QTest: rip out qxp::function_ref from compare_helper()Thiago Macieira13 hours6-28/+100
| | | | | | | | | | | | | | | | [ChangeLog][QtTest] The QCOMPARE_xx macros can now only find QTest::toString() expansions that are either found via Argument Dependent Lookup on the type in question or are an instatiation of the QTest::toString<T>() template. This matches the behavior of the QCOMPARE() macro. This changes the way how the toString() overloads are selected, so we need to explicilty constraint the main QTest::toString() template in order to pick the free functions when they exist. Change-Id: Ie28eadac333c4bcd8c08fffd17c54e768c5cffd0 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
* QTest: rip out qxp::function_ref from reportResult()Thiago Macieira13 hours14-39/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is causing huge code bloat because everything is a local lambda. Instead, pass direct type-erased function and data pointers to the replacement function. Testing with tst_qcborvalue, this reduces the compilation time and the output binary size significantly: Before After Compiler Time Size Time Size GCC 13.2 136.99 s 202.3 MB 13.88 s 14.3 MB GCC 14.0 131.49 s 202.7 MB 14.69 s 14.4 MB Clang 17 77.2 s 146.7 MB 13.62 s 12.2 MB Clang 18 141.9 s 187.1 MB 13.62 s 12.4 MB This causes a difference in how toString() overloads are found. Previously it would match far more overloads because the toString() calls were expanded by the macro. Now, we depend on Argument-Dependent Lookup and associated namespaces, so toString() overloads should not be in the QTest namespace any more. With this patch applied, the testlib testcase of tst_selftest started failing, because nullptr is now handled differently. However, I consider it as a bugfix, because previously it was falling back to a default implementation, and now it is using the QTest::toString(std::nullptr_t) overload, which is a desired behavior. Update the reference files for tst_selftest with the new expected output. Task-number: QTBUG-124272 Change-Id: Ie28eadac333c4bcd8c08fffd17c5484186accdf6 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
* QTest: group all the toString() functionality in a single headerThiago Macieira13 hours4-469/+489
| | | | | | | | | It was split between qtest.h and qtestcase.h, so the QTest::toString() specializations were not available in qtestcase.h. And it was confusing. Change-Id: Ie28eadac333c4bcd8c08fffd17c54fafc8014cc7 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
* QTest: add removed_api.cpp and move deprecated functions to itThiago Macieira13 hours4-8/+32
| | | | | | | | | | | | | QtTest is not under the same Binary Compatibility guarantees as the other modules, but let's try and do it where it's easy. The toString() method can simply be removed from the header because it's not a member function. Its deprecation wasn't marked with a version number, so it starts now with 6.8. Change-Id: Ie28eadac333c4bcd8c08fffd17c54faca7057b9c Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
* QColorTransferTable: de-duplicate inverse lookup codeAllan Sandfeld Jensen13 hours1-31/+23
| | | | | | | | | As a drive-by, drop the unnecessary floor() and just truncate. These operations are the same for positive numbers, and by the time we reach the code, we have already checked and dealt with negative numbers. Change-Id: I3e99438f11e3a6c7862b8592b7bb4ddda1b33666 Reviewed-by: Marc Mutz <marc.mutz@qt.io>
* tst_QTooltip::keyEvent() remove QApplicationPrivate::setActiveWindow()Frédéric Lefebvre14 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I7f87b71237f679575a093ac5d28ddd2c9a911492 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QShortcut::duplicatedShortcutOverride() remove setActiveWindow()Frédéric Lefebvre14 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I6ad2841a15dd9286232ad43069e3839faa3fe901 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QShortcut::context() remove QApplicationPrivate::setActiveWindow()Frédéric Lefebvre14 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I650e67f626865796480c422e9d7ff7dcfd11c9ca Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QTreeView::statusTip() remove QApplicationPrivate::setActiveWindowFrédéric Lefebvre14 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: Ie0754c79fc31a811b587f11924b90a376f5821a9 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QTreeView::keyboardNavigationWithDisabled remove setActiveWindow()Frédéric Lefebvre14 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I1abfd397f74fe8ce5fb37c3ea7128e4e577e717e Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QTreeView::doubleClickedWithSpans() remove setActiveWindow()Frédéric Lefebvre14 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I82752ca528752b401001e1db36f78f440e130dd7 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
* tst_QTreeView::task224091_appendColumns() remove setActiveWindow()Frédéric Lefebvre14 hours1-1/+0
| | | | | | | | | | | 2f6fe3a26843ff68c5d3f9af0a2fc3cce6caac22 has made calls to QApplicationPrivate::setActiveWindow() redundant. Remove redundant calls. Task-number: QTBUG-121488 Change-Id: I5e840632edc7ae86a718896b744baf45b954bdda Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>