aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2024-02-02 08:08:13 +0100
committerChristian Stenger <christian.stenger@qt.io>2024-02-02 07:22:05 +0000
commitd26217e50c0d8f79220d508e6ba0f22555fffc5f (patch)
tree7d8b87b1d964261e34af1196fadfda111cbcaa40 /src/plugins/projectexplorer
parentda4fbc8f06f0e784212e62b9c87ec3ea4c6cdc4f (diff)
PE: Fix order of initialization
...to avoid nullptr connects. Amends c20c2a8c86c4d39d7d0e6d7e419084b7f6f13ba0. Change-Id: Idfb75903289f8ee2cbfc8ae49af008305342ea83 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer')
-rw-r--r--src/plugins/projectexplorer/projectexplorer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp
index ed710205ce..a0346ae819 100644
--- a/src/plugins/projectexplorer/projectexplorer.cpp
+++ b/src/plugins/projectexplorer/projectexplorer.cpp
@@ -819,10 +819,10 @@ bool ProjectExplorerPlugin::initialize(const QStringList &arguments, QString *er
setupProjectTreeWidgetFactory();
- setupCurrentProjectFind();
-
dd = new ProjectExplorerPluginPrivate;
+ setupCurrentProjectFind();
+
setupSanitizerOutputParser();
setupJsonWizardPages();