aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/jsonwizard/jsonfieldpage.h')
-rw-r--r--src/plugins/projectexplorer/jsonwizard/jsonfieldpage.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.h b/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.h
index 7cdb50c544..e1ddc7b559 100644
--- a/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.h
+++ b/src/plugins/projectexplorer/jsonwizard/jsonfieldpage.h
@@ -33,6 +33,8 @@
#include <QRegularExpression>
#include <QVariant>
+#include <memory>
+
QT_BEGIN_NAMESPACE
class QFormLayout;
class QLabel;
@@ -105,7 +107,7 @@ public:
friend class JsonFieldPage;
- FieldPrivate *const d;
+ const std::unique_ptr<FieldPrivate> d;
};
JsonFieldPage(Utils::MacroExpander *expander, QWidget *parent = 0);