forked from qt-creator/qt-creator
Fix connects, the signal moved
This commit is contained in:
@@ -214,7 +214,7 @@ MakeStepConfigWidget::MakeStepConfigWidget(MakeStep *makeStep)
|
|||||||
|
|
||||||
connect(makeStep, SIGNAL(changed()),
|
connect(makeStep, SIGNAL(changed()),
|
||||||
this, SLOT(update()));
|
this, SLOT(update()));
|
||||||
connect(makeStep->buildConfiguration()->project(), SIGNAL(buildDirectoryChanged()),
|
connect(makeStep->buildConfiguration(), SIGNAL(buildDirectoryChanged()),
|
||||||
this, SLOT(updateDetails()));
|
this, SLOT(updateDetails()));
|
||||||
|
|
||||||
connect(ProjectExplorer::ProjectExplorerPlugin::instance(), SIGNAL(settingsChanged()),
|
connect(ProjectExplorer::ProjectExplorerPlugin::instance(), SIGNAL(settingsChanged()),
|
||||||
|
@@ -246,7 +246,7 @@ QMakeStepConfigWidget::QMakeStepConfigWidget(QMakeStep *step)
|
|||||||
connect(m_ui.buildConfigurationComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(buildConfigurationChanged()));
|
connect(m_ui.buildConfigurationComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(buildConfigurationChanged()));
|
||||||
connect(step, SIGNAL(changed()),
|
connect(step, SIGNAL(changed()),
|
||||||
this, SLOT(update()));
|
this, SLOT(update()));
|
||||||
connect(step->buildConfiguration()->project(), SIGNAL(qtVersionChanged(ProjectExplorer::BuildConfiguration *)),
|
connect(step->buildConfiguration(), SIGNAL(qtVersionChanged(ProjectExplorer::BuildConfiguration *)),
|
||||||
this, SLOT(qtVersionChanged(ProjectExplorer::BuildConfiguration *)));
|
this, SLOT(qtVersionChanged(ProjectExplorer::BuildConfiguration *)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -43,8 +43,8 @@ class Project;
|
|||||||
}
|
}
|
||||||
|
|
||||||
namespace Qt4ProjectManager {
|
namespace Qt4ProjectManager {
|
||||||
|
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
class QMakeStepFactory : public ProjectExplorer::IBuildStepFactory
|
class QMakeStepFactory : public ProjectExplorer::IBuildStepFactory
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
Reference in New Issue
Block a user