From cc66a2ccbbe383f3e4ed6a5622da9e76515ae0b8 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Fri, 13 Oct 2017 17:48:54 +0300 Subject: [PATCH] Fix compatibility issue with Qt 5.2. --HG-- branch : develop --- src/libs/vpropertyexplorer/vpropertyformwidget.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/libs/vpropertyexplorer/vpropertyformwidget.cpp b/src/libs/vpropertyexplorer/vpropertyformwidget.cpp index 2d0744953..b5feaa446 100644 --- a/src/libs/vpropertyexplorer/vpropertyformwidget.cpp +++ b/src/libs/vpropertyexplorer/vpropertyformwidget.cpp @@ -25,7 +25,13 @@ #include #include #include -#include + +#if QT_VERSION < QT_VERSION_CHECK(5, 3, 0) +# include "../vmisc/backport/qmarginsf.h" +#else +# include +#endif + #include #include #include