From 2128953cfba71e0af1a8966575684f4b211362b8 Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Thu, 4 Oct 2018 13:24:03 +0200 Subject: [PATCH] Adapt to rename extraAspect -> aspect Change-Id: Idc86ea94321bd7d22c9c90de880385d630ef179d Reviewed-by: Orgad Shaneh --- src/plugins/projectexplorer/projectexplorer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index 258c598f890..db669d69073 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -1572,7 +1572,7 @@ bool ProjectExplorerPlugin::initialize(const QStringList &arguments, QString *er Utils::EnvironmentProvider::addProvider( {"CurrentRun:Env", tr("Current Run Environment"), []() { if (RunConfiguration *rc = activeRunConfiguration()) - if (auto envAspect = rc->extraAspect()) + if (auto envAspect = rc->aspect()) return envAspect->environment(); return Utils::Environment::systemEnvironment(); }});