Skip to content

Commit

Permalink
Move the Windows Event Dispatcher into QtGui
Browse files Browse the repository at this point in the history
Task-number: QTBUG-83255
Change-Id: Ida86f27d7f52b9be48fbea909979320866ff8dae
Reviewed-by: Oliver Wolff <[email protected]>
  • Loading branch information
FriedemannKleint committed Jun 9, 2020
1 parent 15456ef commit bc84b7d
Show file tree
Hide file tree
Showing 23 changed files with 87 additions and 88 deletions.
1 change: 1 addition & 0 deletions src/gui/.prev_CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ qt_extend_target(Gui CONDITION WIN32
SOURCES
image/qpixmap_win.cpp
kernel/qwindowdefs_win.h
platform/windows/qwindowsguieventdispatcher.cpp platform/windows/qwindowsguieventdispatcher_p.h
rhi/qrhid3d11.cpp rhi/qrhid3d11_p.h
rhi/qrhid3d11_p_p.h
PUBLIC_LIBRARIES
Expand Down
1 change: 1 addition & 0 deletions src/gui/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,7 @@ qt_extend_target(Gui CONDITION WIN32
SOURCES
image/qpixmap_win.cpp
kernel/qwindowdefs_win.h
platform/windows/qwindowsguieventdispatcher.cpp platform/windows/qwindowsguieventdispatcher_p.h
rhi/qrhid3d11.cpp rhi/qrhid3d11_p.h
rhi/qrhid3d11_p_p.h
PUBLIC_LIBRARIES
Expand Down
1 change: 1 addition & 0 deletions src/gui/platform/platform.pri
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
wasm:include(wasm/wasm.pri)
darwin:include(darwin/darwin.pri)
win32:include(windows/windows.pri)
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,11 @@
//

#include <QtCore/private/qeventdispatcher_win_p.h>
#include <QtGui/qtguiglobal.h>

QT_BEGIN_NAMESPACE

class QWindowsGuiEventDispatcher : public QEventDispatcherWin32
class Q_GUI_EXPORT QWindowsGuiEventDispatcher : public QEventDispatcherWin32
{
Q_OBJECT
public:
Expand Down
2 changes: 2 additions & 0 deletions src/gui/platform/windows/windows.pri
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
HEADERS += platform/windows/qwindowsguieventdispatcher_p.h
SOURCES += platform/windows/qwindowsguieventdispatcher.cpp
5 changes: 0 additions & 5 deletions src/platformsupport/eventdispatchers/.prev_CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@ qt_extend_target(EventDispatcherSupport CONDITION UNIX
qunixeventdispatcher_qpa_p.h
)

qt_extend_target(EventDispatcherSupport CONDITION WIN32
SOURCES
qwindowsguieventdispatcher.cpp qwindowsguieventdispatcher_p.h
)

qt_extend_target(EventDispatcherSupport CONDITION QT_FEATURE_glib
SOURCES
qeventdispatcher_glib.cpp qeventdispatcher_glib_p.h
Expand Down
5 changes: 0 additions & 5 deletions src/platformsupport/eventdispatchers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ qt_extend_target(EventDispatcherSupport CONDITION UNIX
qunixeventdispatcher_qpa_p.h
)

qt_extend_target(EventDispatcherSupport CONDITION WIN32
SOURCES
qwindowsguieventdispatcher.cpp qwindowsguieventdispatcher_p.h
)

qt_extend_target(EventDispatcherSupport CONDITION QT_FEATURE_glib
SOURCES
qeventdispatcher_glib.cpp qeventdispatcher_glib_p.h
Expand Down
6 changes: 0 additions & 6 deletions src/platformsupport/eventdispatchers/eventdispatchers.pro
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,6 @@ unix {
HEADERS += \
qunixeventdispatcher_qpa_p.h \
qgenericunixeventdispatcher_p.h
} else {
SOURCES += \
qwindowsguieventdispatcher.cpp

HEADERS += \
qwindowsguieventdispatcher_p.h
}

qtConfig(glib) {
Expand Down
1 change: 0 additions & 1 deletion src/plugins/platforms/direct2d/direct2d.pro
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ TARGET = qdirect2d

QT += \
core-private gui-private \
eventdispatcher_support-private \
fontdatabase_support-private

LIBS += -ldwmapi -lversion -ld3d11 -ldxgi -ldxguid
Expand Down
8 changes: 6 additions & 2 deletions src/plugins/platforms/minimal/.prev_CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ qt_internal_add_plugin(QMinimalIntegrationPlugin
PUBLIC_LIBRARIES
Qt::Core
Qt::CorePrivate
Qt::EventDispatcherSupportPrivate
Qt::Gui
Qt::GuiPrivate
)
Expand All @@ -27,6 +26,11 @@ qt_internal_add_plugin(QMinimalIntegrationPlugin
## Scopes:
#####################################################################

qt_extend_target(QMinimalIntegrationPlugin CONDITION UNIX
PUBLIC_LIBRARIES
Qt::EventDispatcherSupportPrivate
)

qt_extend_target(QMinimalIntegrationPlugin CONDITION NOT APPLE
PUBLIC_LIBRARIES
Qt::FontDatabaseSupportPrivate
Expand All @@ -37,5 +41,5 @@ qt_extend_target(QMinimalIntegrationPlugin CONDITION QT_FEATURE_freetype
WrapFreetype::WrapFreetype
)

#### Keys ignored in scope 4:.:.:minimal.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
#### Keys ignored in scope 5:.:.:minimal.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
# PLUGIN_EXTENDS = "-"
8 changes: 6 additions & 2 deletions src/plugins/platforms/minimal/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ qt_internal_add_plugin(QMinimalIntegrationPlugin
PUBLIC_LIBRARIES
Qt::Core
Qt::CorePrivate
Qt::EventDispatcherSupportPrivate
Qt::Gui
Qt::GuiPrivate
)
Expand All @@ -30,6 +29,11 @@ qt_internal_add_plugin(QMinimalIntegrationPlugin
## Scopes:
#####################################################################

qt_extend_target(QMinimalIntegrationPlugin CONDITION UNIX
PUBLIC_LIBRARIES
Qt::EventDispatcherSupportPrivate
)

qt_extend_target(QMinimalIntegrationPlugin CONDITION NOT APPLE
PUBLIC_LIBRARIES
Qt::FontDatabaseSupportPrivate
Expand All @@ -40,5 +44,5 @@ qt_extend_target(QMinimalIntegrationPlugin CONDITION QT_FEATURE_freetype
WrapFreetype::WrapFreetype
)

#### Keys ignored in scope 4:.:.:minimal.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
#### Keys ignored in scope 5:.:.:minimal.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
# PLUGIN_EXTENDS = "-"
4 changes: 2 additions & 2 deletions src/plugins/platforms/minimal/minimal.pro
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
TARGET = qminimal

QT += \
core-private gui-private \
eventdispatcher_support-private
core-private gui-private

!win32: QT += eventdispatcher_support-private
!darwin: QT += fontdatabase_support-private

DEFINES += QT_NO_FOREACH
Expand Down
8 changes: 6 additions & 2 deletions src/plugins/platforms/offscreen/.prev_CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ qt_internal_add_plugin(QOffscreenIntegrationPlugin
PUBLIC_LIBRARIES
Qt::Core
Qt::CorePrivate
Qt::EventDispatcherSupportPrivate
Qt::Gui
Qt::GuiPrivate
)
Expand All @@ -28,6 +27,11 @@ qt_internal_add_plugin(QOffscreenIntegrationPlugin
## Scopes:
#####################################################################

qt_extend_target(QOffscreenIntegrationPlugin CONDITION UNIX
PUBLIC_LIBRARIES
Qt::EventDispatcherSupportPrivate
)

qt_extend_target(QOffscreenIntegrationPlugin CONDITION NOT APPLE
PUBLIC_LIBRARIES
Qt::FontDatabaseSupportPrivate
Expand All @@ -40,5 +44,5 @@ qt_extend_target(QOffscreenIntegrationPlugin CONDITION QT_FEATURE_opengl AND QT_
Qt::GlxSupportPrivate
)

#### Keys ignored in scope 4:.:.:offscreen.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
#### Keys ignored in scope 5:.:.:offscreen.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
# PLUGIN_EXTENDS = "-"
8 changes: 6 additions & 2 deletions src/plugins/platforms/offscreen/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ qt_internal_add_plugin(QOffscreenIntegrationPlugin
PUBLIC_LIBRARIES
Qt::Core
Qt::CorePrivate
Qt::EventDispatcherSupportPrivate
Qt::Gui
Qt::GuiPrivate
)
Expand All @@ -29,6 +28,11 @@ qt_internal_add_plugin(QOffscreenIntegrationPlugin
## Scopes:
#####################################################################

qt_extend_target(QOffscreenIntegrationPlugin CONDITION UNIX
PUBLIC_LIBRARIES
Qt::EventDispatcherSupportPrivate
)

qt_extend_target(QOffscreenIntegrationPlugin CONDITION NOT APPLE
PUBLIC_LIBRARIES
Qt::FontDatabaseSupportPrivate
Expand All @@ -41,5 +45,5 @@ qt_extend_target(QOffscreenIntegrationPlugin CONDITION QT_FEATURE_opengl AND QT_
Qt::GlxSupportPrivate
)

#### Keys ignored in scope 4:.:.:offscreen.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
#### Keys ignored in scope 5:.:.:offscreen.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
# PLUGIN_EXTENDS = "-"
4 changes: 2 additions & 2 deletions src/plugins/platforms/offscreen/offscreen.pro
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
TARGET = qoffscreen

QT += \
core-private gui-private \
eventdispatcher_support-private
core-private gui-private

!win32: QT += eventdispatcher_support-private
!darwin: QT += fontdatabase_support-private

DEFINES += QT_NO_FOREACH
Expand Down
52 changes: 24 additions & 28 deletions src/plugins/platforms/windows/.prev_CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,9 @@ qt_internal_add_plugin(QWindowsIntegrationPlugin
PUBLIC_LIBRARIES
Qt::Core
Qt::CorePrivate
Qt::EventDispatcherSupportPrivate
Qt::FontDatabaseSupportPrivate
Qt::Gui
Qt::GuiPrivate
Qt::ThemeSupportPrivate
dwmapi
imm32
oleaut32
Expand Down Expand Up @@ -93,38 +91,13 @@ qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_opengl
Qt::OpenGLPrivate
)

qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_accessibility
SOURCES
uiautomation/qwindowsuiaaccessibility.cpp uiautomation/qwindowsuiaaccessibility.h
uiautomation/qwindowsuiabaseprovider.cpp uiautomation/qwindowsuiabaseprovider.h
uiautomation/qwindowsuiaexpandcollapseprovider.cpp uiautomation/qwindowsuiaexpandcollapseprovider.h
uiautomation/qwindowsuiagriditemprovider.cpp uiautomation/qwindowsuiagriditemprovider.h
uiautomation/qwindowsuiagridprovider.cpp uiautomation/qwindowsuiagridprovider.h
uiautomation/qwindowsuiainvokeprovider.cpp uiautomation/qwindowsuiainvokeprovider.h
uiautomation/qwindowsuiamainprovider.cpp uiautomation/qwindowsuiamainprovider.h
uiautomation/qwindowsuiaprovidercache.cpp uiautomation/qwindowsuiaprovidercache.h
uiautomation/qwindowsuiarangevalueprovider.cpp uiautomation/qwindowsuiarangevalueprovider.h
uiautomation/qwindowsuiaselectionitemprovider.cpp uiautomation/qwindowsuiaselectionitemprovider.h
uiautomation/qwindowsuiaselectionprovider.cpp uiautomation/qwindowsuiaselectionprovider.h
uiautomation/qwindowsuiatableitemprovider.cpp uiautomation/qwindowsuiatableitemprovider.h
uiautomation/qwindowsuiatableprovider.cpp uiautomation/qwindowsuiatableprovider.h
uiautomation/qwindowsuiatextprovider.cpp uiautomation/qwindowsuiatextprovider.h
uiautomation/qwindowsuiatextrangeprovider.cpp uiautomation/qwindowsuiatextrangeprovider.h
uiautomation/qwindowsuiatoggleprovider.cpp uiautomation/qwindowsuiatoggleprovider.h
uiautomation/qwindowsuiautils.cpp uiautomation/qwindowsuiautils.h
uiautomation/qwindowsuiavalueprovider.cpp uiautomation/qwindowsuiavalueprovider.h
uiautomation/qwindowsuiawindowprovider.cpp uiautomation/qwindowsuiawindowprovider.h
PUBLIC_LIBRARIES
Qt::AccessibilitySupportPrivate
)

qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_directwrite3
DEFINES
QT_USE_DIRECTWRITE2
QT_USE_DIRECTWRITE3
)

#### Keys ignored in scope 5:.:.:windows.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
#### Keys ignored in scope 4:.:.:windows.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
# PLUGIN_EXTENDS = "-"

qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_opengl AND NOT QT_FEATURE_dynamicgl
Expand Down Expand Up @@ -203,6 +176,29 @@ if(QT_FEATURE_imageformat_png)
)
endif()

qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_accessibility
SOURCES
uiautomation/qwindowsuiaaccessibility.cpp uiautomation/qwindowsuiaaccessibility.h
uiautomation/qwindowsuiabaseprovider.cpp uiautomation/qwindowsuiabaseprovider.h
uiautomation/qwindowsuiaexpandcollapseprovider.cpp uiautomation/qwindowsuiaexpandcollapseprovider.h
uiautomation/qwindowsuiagriditemprovider.cpp uiautomation/qwindowsuiagriditemprovider.h
uiautomation/qwindowsuiagridprovider.cpp uiautomation/qwindowsuiagridprovider.h
uiautomation/qwindowsuiainvokeprovider.cpp uiautomation/qwindowsuiainvokeprovider.h
uiautomation/qwindowsuiamainprovider.cpp uiautomation/qwindowsuiamainprovider.h
uiautomation/qwindowsuiaprovidercache.cpp uiautomation/qwindowsuiaprovidercache.h
uiautomation/qwindowsuiarangevalueprovider.cpp uiautomation/qwindowsuiarangevalueprovider.h
uiautomation/qwindowsuiaselectionitemprovider.cpp uiautomation/qwindowsuiaselectionitemprovider.h
uiautomation/qwindowsuiaselectionprovider.cpp uiautomation/qwindowsuiaselectionprovider.h
uiautomation/qwindowsuiatableitemprovider.cpp uiautomation/qwindowsuiatableitemprovider.h
uiautomation/qwindowsuiatableprovider.cpp uiautomation/qwindowsuiatableprovider.h
uiautomation/qwindowsuiatextprovider.cpp uiautomation/qwindowsuiatextprovider.h
uiautomation/qwindowsuiatextrangeprovider.cpp uiautomation/qwindowsuiatextrangeprovider.h
uiautomation/qwindowsuiatoggleprovider.cpp uiautomation/qwindowsuiatoggleprovider.h
uiautomation/qwindowsuiautils.cpp uiautomation/qwindowsuiautils.h
uiautomation/qwindowsuiavalueprovider.cpp uiautomation/qwindowsuiavalueprovider.h
uiautomation/qwindowsuiawindowprovider.cpp uiautomation/qwindowsuiawindowprovider.h
)

qt_extend_target(QWindowsIntegrationPlugin CONDITION MINGW AND QT_FEATURE_accessibility
PUBLIC_LIBRARIES
uuid
Expand Down
49 changes: 24 additions & 25 deletions src/plugins/platforms/windows/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ qt_internal_add_plugin(QWindowsIntegrationPlugin
PUBLIC_LIBRARIES
Qt::Core
Qt::CorePrivate
Qt::EventDispatcherSupportPrivate
Qt::FontDatabaseSupportPrivate
Qt::Gui
Qt::GuiPrivate
Expand Down Expand Up @@ -93,36 +92,13 @@ qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_opengl
Qt::OpenGLPrivate
)

qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_accessibility
SOURCES
uiautomation/qwindowsuiaaccessibility.cpp uiautomation/qwindowsuiaaccessibility.h
uiautomation/qwindowsuiabaseprovider.cpp uiautomation/qwindowsuiabaseprovider.h
uiautomation/qwindowsuiaexpandcollapseprovider.cpp uiautomation/qwindowsuiaexpandcollapseprovider.h
uiautomation/qwindowsuiagriditemprovider.cpp uiautomation/qwindowsuiagriditemprovider.h
uiautomation/qwindowsuiagridprovider.cpp uiautomation/qwindowsuiagridprovider.h
uiautomation/qwindowsuiainvokeprovider.cpp uiautomation/qwindowsuiainvokeprovider.h
uiautomation/qwindowsuiamainprovider.cpp uiautomation/qwindowsuiamainprovider.h
uiautomation/qwindowsuiaprovidercache.cpp uiautomation/qwindowsuiaprovidercache.h
uiautomation/qwindowsuiarangevalueprovider.cpp uiautomation/qwindowsuiarangevalueprovider.h
uiautomation/qwindowsuiaselectionitemprovider.cpp uiautomation/qwindowsuiaselectionitemprovider.h
uiautomation/qwindowsuiaselectionprovider.cpp uiautomation/qwindowsuiaselectionprovider.h
uiautomation/qwindowsuiatableitemprovider.cpp uiautomation/qwindowsuiatableitemprovider.h
uiautomation/qwindowsuiatableprovider.cpp uiautomation/qwindowsuiatableprovider.h
uiautomation/qwindowsuiatextprovider.cpp uiautomation/qwindowsuiatextprovider.h
uiautomation/qwindowsuiatextrangeprovider.cpp uiautomation/qwindowsuiatextrangeprovider.h
uiautomation/qwindowsuiatoggleprovider.cpp uiautomation/qwindowsuiatoggleprovider.h
uiautomation/qwindowsuiautils.cpp uiautomation/qwindowsuiautils.h
uiautomation/qwindowsuiavalueprovider.cpp uiautomation/qwindowsuiavalueprovider.h
uiautomation/qwindowsuiawindowprovider.cpp uiautomation/qwindowsuiawindowprovider.h
)

qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_directwrite3
DEFINES
QT_USE_DIRECTWRITE2
QT_USE_DIRECTWRITE3
)

#### Keys ignored in scope 5:.:.:windows.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
#### Keys ignored in scope 4:.:.:windows.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
# PLUGIN_EXTENDS = "-"

qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_opengl AND NOT QT_FEATURE_dynamicgl
Expand Down Expand Up @@ -201,6 +177,29 @@ if(QT_FEATURE_imageformat_png)
)
endif()

qt_extend_target(QWindowsIntegrationPlugin CONDITION QT_FEATURE_accessibility
SOURCES
uiautomation/qwindowsuiaaccessibility.cpp uiautomation/qwindowsuiaaccessibility.h
uiautomation/qwindowsuiabaseprovider.cpp uiautomation/qwindowsuiabaseprovider.h
uiautomation/qwindowsuiaexpandcollapseprovider.cpp uiautomation/qwindowsuiaexpandcollapseprovider.h
uiautomation/qwindowsuiagriditemprovider.cpp uiautomation/qwindowsuiagriditemprovider.h
uiautomation/qwindowsuiagridprovider.cpp uiautomation/qwindowsuiagridprovider.h
uiautomation/qwindowsuiainvokeprovider.cpp uiautomation/qwindowsuiainvokeprovider.h
uiautomation/qwindowsuiamainprovider.cpp uiautomation/qwindowsuiamainprovider.h
uiautomation/qwindowsuiaprovidercache.cpp uiautomation/qwindowsuiaprovidercache.h
uiautomation/qwindowsuiarangevalueprovider.cpp uiautomation/qwindowsuiarangevalueprovider.h
uiautomation/qwindowsuiaselectionitemprovider.cpp uiautomation/qwindowsuiaselectionitemprovider.h
uiautomation/qwindowsuiaselectionprovider.cpp uiautomation/qwindowsuiaselectionprovider.h
uiautomation/qwindowsuiatableitemprovider.cpp uiautomation/qwindowsuiatableitemprovider.h
uiautomation/qwindowsuiatableprovider.cpp uiautomation/qwindowsuiatableprovider.h
uiautomation/qwindowsuiatextprovider.cpp uiautomation/qwindowsuiatextprovider.h
uiautomation/qwindowsuiatextrangeprovider.cpp uiautomation/qwindowsuiatextrangeprovider.h
uiautomation/qwindowsuiatoggleprovider.cpp uiautomation/qwindowsuiatoggleprovider.h
uiautomation/qwindowsuiautils.cpp uiautomation/qwindowsuiautils.h
uiautomation/qwindowsuiavalueprovider.cpp uiautomation/qwindowsuiavalueprovider.h
uiautomation/qwindowsuiawindowprovider.cpp uiautomation/qwindowsuiawindowprovider.h
)

qt_extend_target(QWindowsIntegrationPlugin CONDITION MINGW AND QT_FEATURE_accessibility
PUBLIC_LIBRARIES
uuid
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/platforms/windows/qwindowsclipboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
#include <QtCore/qvariant.h>
#include <QtCore/qurl.h>

#include <QtEventDispatcherSupport/private/qwindowsguieventdispatcher_p.h>
#include <QtGui/private/qwindowsguieventdispatcher_p.h>

QT_BEGIN_NAMESPACE

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/platforms/windows/qwindowscontext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
#include <QtCore/private/qsystemlibrary_p.h>
#include <QtCore/private/qwinregistry_p.h>

#include <QtEventDispatcherSupport/private/qwindowsguieventdispatcher_p.h>
#include <QtGui/private/qwindowsguieventdispatcher_p.h>

#include <stdlib.h>
#include <stdio.h>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/platforms/windows/qwindowsintegration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
#include <QtGui/qpa/qplatforminputcontextfactory_p.h>
#include <QtGui/qpa/qplatformcursor.h>

#include <QtEventDispatcherSupport/private/qwindowsguieventdispatcher_p.h>
#include <QtGui/private/qwindowsguieventdispatcher_p.h>

#include <QtCore/qdebug.h>
#include <QtCore/qvariant.h>
Expand Down
Loading

0 comments on commit bc84b7d

Please sign in to comment.