summaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2020-09-02 12:04:07 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2020-09-05 02:06:26 +0200
commit0f39cfae93ab20e6e190bc02225265d6186149d3 (patch)
treef9ad4555955c29f858425c089b96155b485b9c44 /tests/manual
parent403b01f86682b9b0b1cd271dbf421da949a2f0ad (diff)
Change QWidget::enterEvent signature to take a QEnterEvent
This is a source incompatible change for widget implementors. Leaving the old enterEvent as a virtual overload is problematic due to shadowing. Best to make a clean cut, widget reimplementors will get a compile time warning if they mark their override as such, or if they try to call the parent class implementation. Addresses ### Qt 6 comment. [ChangeLog][QtWidgets][QWidget] The virtual enterEvent handler now receives a QEnterEvent, which contains information about mouse position and button states, rather than a plain QEvent. Change-Id: I233f594fd79c0c090983b3db8532913d00132fde Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/cocoa/nativewidgets/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/cocoa/nativewidgets/main.cpp b/tests/manual/cocoa/nativewidgets/main.cpp
index 3923e30de7..769bf8664a 100644
--- a/tests/manual/cocoa/nativewidgets/main.cpp
+++ b/tests/manual/cocoa/nativewidgets/main.cpp
@@ -61,7 +61,7 @@ public:
update();
}
- void enterEvent(QEvent *)
+ void enterEvent(QEnterEvent *)
{
s = 200;
v = 200;