aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.h')
-rw-r--r--src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.h b/src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.h
index 2cf39a5c116..4550c4906ca 100644
--- a/src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.h
+++ b/src/plugins/autotoolsprojectmanager/autotoolsbuildsettingswidget.h
@@ -35,12 +35,10 @@
#ifndef AUTOTOOLSBUILDSETTINGSWIDGET_H
#define AUTOTOOLSBUILDSETTINGSWIDGET_H
-#include "autotoolstarget.h"
#include "autotoolsbuildconfiguration.h"
#include <projectexplorer/buildconfiguration.h>
#include <projectexplorer/project.h>
-#include <projectexplorer/toolchain.h>
#include <projectexplorer/buildstep.h>
#include <utils/pathchooser.h>
@@ -51,7 +49,7 @@ QT_END_NAMESPACE
namespace AutotoolsProjectManager {
namespace Internal {
-class AutotoolsProject;
+class AutotoolsBuildConfiguration;
/**
* @brief Implementation of ProjectExplorer::BuildConfigWidget interface.
@@ -63,21 +61,16 @@ class AutotoolsBuildSettingsWidget : public ProjectExplorer::BuildConfigWidget
Q_OBJECT
public:
- explicit AutotoolsBuildSettingsWidget(AutotoolsTarget *target);
+ AutotoolsBuildSettingsWidget();
QString displayName() const;
void init(ProjectExplorer::BuildConfiguration *bc);
private slots:
void buildDirectoryChanged();
- void toolChainSelected(int index);
- void toolChainChanged(ProjectExplorer::ToolChain *tc);
- void updateToolChainList();
private:
- AutotoolsTarget *m_target;
Utils::PathChooser *m_pathChooser;
- QComboBox *m_toolChainChooser;
AutotoolsBuildConfiguration *m_buildConfiguration;
};