fixed window frame for qt 5.11.1
This commit is contained in:
@@ -459,7 +459,11 @@ bool BaseWindow::nativeEvent(const QByteArray &eventType, void *message,
|
|||||||
long *result)
|
long *result)
|
||||||
{
|
{
|
||||||
#ifdef USEWINSDK
|
#ifdef USEWINSDK
|
||||||
|
#if (QT_VERSION == QT_VERSION_CHECK(5, 11, 1))
|
||||||
|
MSG *msg = *reinterpret_cast<MSG **>(message);
|
||||||
|
#else
|
||||||
MSG *msg = reinterpret_cast<MSG *>(message);
|
MSG *msg = reinterpret_cast<MSG *>(message);
|
||||||
|
#endif
|
||||||
|
|
||||||
bool returnValue = false;
|
bool returnValue = false;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user