win: fix build with Qt 5.14 and MinGW (#155)

This commit is contained in:
Jan Kowalewicz 2022-09-10 10:38:40 +02:00 committed by GitHub
parent 33c3eaa05a
commit f2affbca85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -68,11 +68,11 @@ Q_SIGNALS:
void micaEnabledChanged();
private:
QPointer<QWidget> m_targetWidget = nullptr;
QPointer<QWidget> m_targetWidget;
bool m_micaEnabled = false;
QPointer<MicaMaterial> m_micaMaterial;
QMetaObject::Connection m_micaRedrawConnection = {};
QPointer<QScreen> m_screen = nullptr;
QPointer<QScreen> m_screen;
qreal m_screenDpr = 0.0;
QMetaObject::Connection m_screenDpiChangeConnection = {};
};