Fix connects, the signal moved

This commit is contained in:
dt
2009-11-25 20:02:06 +01:00
parent 88e432cd6c
commit 4c28a2ea0c
3 changed files with 3 additions and 3 deletions

View File

@@ -214,7 +214,7 @@ MakeStepConfigWidget::MakeStepConfigWidget(MakeStep *makeStep)
connect(makeStep, SIGNAL(changed()),
this, SLOT(update()));
connect(makeStep->buildConfiguration()->project(), SIGNAL(buildDirectoryChanged()),
connect(makeStep->buildConfiguration(), SIGNAL(buildDirectoryChanged()),
this, SLOT(updateDetails()));
connect(ProjectExplorer::ProjectExplorerPlugin::instance(), SIGNAL(settingsChanged()),

View File

@@ -246,7 +246,7 @@ QMakeStepConfigWidget::QMakeStepConfigWidget(QMakeStep *step)
connect(m_ui.buildConfigurationComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(buildConfigurationChanged()));
connect(step, SIGNAL(changed()),
this, SLOT(update()));
connect(step->buildConfiguration()->project(), SIGNAL(qtVersionChanged(ProjectExplorer::BuildConfiguration *)),
connect(step->buildConfiguration(), SIGNAL(qtVersionChanged(ProjectExplorer::BuildConfiguration *)),
this, SLOT(qtVersionChanged(ProjectExplorer::BuildConfiguration *)));
}

View File

@@ -43,8 +43,8 @@ class Project;
}
namespace Qt4ProjectManager {
namespace Internal {
class QMakeStepFactory : public ProjectExplorer::IBuildStepFactory
{
Q_OBJECT