From d26217e50c0d8f79220d508e6ba0f22555fffc5f Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Fri, 2 Feb 2024 08:08:13 +0100 Subject: [PATCH] PE: Fix order of initialization ...to avoid nullptr connects. Amends c20c2a8c86c4d39d7d0e6d7e419084b7f6f13ba0. Change-Id: Idfb75903289f8ee2cbfc8ae49af008305342ea83 Reviewed-by: hjk --- src/plugins/projectexplorer/projectexplorer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index ed710205cee..a0346ae8193 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();