mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Merge remote-tracking branch 'origin/master' into zneix/feature/qt6
This commit is contained in:
commit
1520398984
|
@ -1 +1 @@
|
|||
Subproject commit a196c53829f304b854ae79a770ce537b953a8e60
|
||||
Subproject commit c613600e6a52e6d3166247a05205cf1c755d4868
|
|
@ -641,11 +641,7 @@ bool BaseWindow::nativeEvent(const QByteArray &eventType, void *message,
|
|||
qintptr *result)
|
||||
{
|
||||
#ifdef USEWINSDK
|
||||
# if (QT_VERSION == QT_VERSION_CHECK(5, 11, 1))
|
||||
MSG *msg = *reinterpret_cast<MSG **>(message);
|
||||
# else
|
||||
MSG *msg = reinterpret_cast<MSG *>(message);
|
||||
# endif
|
||||
|
||||
bool returnValue = false;
|
||||
|
||||
|
|
|
@ -30,11 +30,7 @@ FramelessEmbedWindow::FramelessEmbedWindow()
|
|||
bool FramelessEmbedWindow::nativeEvent(const QByteArray &eventType,
|
||||
void *message, long *result)
|
||||
{
|
||||
# if (QT_VERSION == QT_VERSION_CHECK(5, 11, 1))
|
||||
MSG *msg = *reinterpret_cast<MSG **>(message);
|
||||
# else
|
||||
MSG *msg = reinterpret_cast<MSG *>(message);
|
||||
# endif
|
||||
|
||||
if (msg->message == WM_COPYDATA)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue