diff options
author | Christian Stenger <[email protected]> | 2024-02-02 08:08:13 +0100 |
---|---|---|
committer | Christian Stenger <[email protected]> | 2024-02-02 07:22:05 +0000 |
commit | d26217e50c0d8f79220d508e6ba0f22555fffc5f (patch) | |
tree | 7d8b87b1d964261e34af1196fadfda111cbcaa40 | |
parent | da4fbc8f06f0e784212e62b9c87ec3ea4c6cdc4f (diff) |
PE: Fix order of initialization
...to avoid nullptr connects.
Amends c20c2a8c86c4d39d7d0e6d7e419084b7f6f13ba0.
Change-Id: Idfb75903289f8ee2cbfc8ae49af008305342ea83
Reviewed-by: hjk <[email protected]>
-rw-r--r-- | src/plugins/projectexplorer/projectexplorer.cpp | 4 |
1 files 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(); |