From bbdf1dae3ee2de42213923b36f71194ca0362504 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 5 Nov 2014 16:23:34 +0100 Subject: [PATCH] QmakeProject: Add macro expansion to desktop qmake runconfig widget Change-Id: I434b7308c927c65280671ec7eb4e4dbad92edd6a Reviewed-by: Tobias Hunger --- .../qmakeprojectmanager/desktopqmakerunconfiguration.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.cpp b/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.cpp index 01167b093d2..97639768f32 100644 --- a/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.cpp +++ b/src/plugins/qmakeprojectmanager/desktopqmakerunconfiguration.cpp @@ -35,6 +35,7 @@ #include "qmakebuildconfiguration.h" #include +#include #include #include #include @@ -294,6 +295,8 @@ DesktopQmakeRunConfigurationWidget::DesktopQmakeRunConfigurationWidget(DesktopQm connect(qmakeRunConfiguration, SIGNAL(enabledChanged()), this, SLOT(runConfigurationEnabledChange())); + + Core::VariableChooser::addSupportForChildWidgets(this, m_qmakeRunConfiguration->macroExpander()); } DesktopQmakeRunConfigurationWidget::~DesktopQmakeRunConfigurationWidget()