summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-04-09 12:00:10 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-04-09 12:01:01 (GMT)
commit3d15ae4ea121ba68572f0314a93b756ed2659e09 (patch)
treeb28a5f92bacfd991dde206050c4ca13cba95b7ae /Source
parent0e953e138bf4a5e6f1e66bf6d89241781502f088 (diff)
parent18962f8f8f71cfb29cf56bef7dfecb022f423a28 (diff)
downloadCMake-3d15ae4ea121ba68572f0314a93b756ed2659e09.zip
CMake-3d15ae4ea121ba68572f0314a93b756ed2659e09.tar.gz
CMake-3d15ae4ea121ba68572f0314a93b756ed2659e09.tar.bz2
Merge topic 'cmake-gui-windows-theme'
18962f8f8f Utilities/Release: Link statically to QWindowsVistaStyle plugin a53c3f03bc Merge branch 'backport-cmake-gui-windows-theme' fce03306ee cmake-gui: Fix theme on Windows with Qt >= 5.10 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3205
Diffstat (limited to 'Source')
-rw-r--r--Source/QtDialog/CMakeSetup.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/QtDialog/CMakeSetup.cxx b/Source/QtDialog/CMakeSetup.cxx
index cd30ad5..8d9a50c 100644
--- a/Source/QtDialog/CMakeSetup.cxx
+++ b/Source/QtDialog/CMakeSetup.cxx
@@ -48,6 +48,9 @@ Q_IMPORT_PLUGIN(QXcbIntegrationPlugin);
#if defined(USE_QWindowsIntegrationPlugin)
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin);
+# if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
+Q_IMPORT_PLUGIN(QWindowsVistaStylePlugin);
+# endif
#endif
int main(int argc, char** argv)