summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/environmenteditmodel.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2010-04-21 11:40:22 +0200
committerTobias Hunger <tobias.hunger@nokia.com>2010-04-21 16:13:12 +0200
commit089e5d38409ad387bfb1788420f5c19bc260df1e (patch)
tree698b30209e206caf6b1b577398f0e036d8ee852e /src/plugins/projectexplorer/environmenteditmodel.cpp
parent878f465578b30e3b90f0488e0e67004ea0198b6c (diff)
downloadqt-creator-089e5d38409ad387bfb1788420f5c19bc260df1e.tar.gz
Cleanup EnvironmentEditModel
* Remove now unused code * Make updateButtons private * Remove unnecessary calls to update Button Reviewed-by: dt
Diffstat (limited to 'src/plugins/projectexplorer/environmenteditmodel.cpp')
-rw-r--r--src/plugins/projectexplorer/environmenteditmodel.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/plugins/projectexplorer/environmenteditmodel.cpp b/src/plugins/projectexplorer/environmenteditmodel.cpp
index f50df4de92..3481e32430 100644
--- a/src/plugins/projectexplorer/environmenteditmodel.cpp
+++ b/src/plugins/projectexplorer/environmenteditmodel.cpp
@@ -152,14 +152,6 @@ int EnvironmentModel::findInChanges(const QString &name) const
return -1;
}
-int EnvironmentModel::findInChangesInsertPosition(const QString &name) const
-{
- for (int i=0; i<m_items.size(); ++i)
- if (m_items.at(i).name > name)
- return i;
- return m_items.size();
-}
-
QModelIndex EnvironmentModel::variableToIndex(const QString &name) const
{
int row = findInResult(name);
@@ -380,8 +372,6 @@ EnvironmentWidget::EnvironmentWidget(QWidget *parent, QWidget *additionalDetails
connect(m_model, SIGNAL(modelReset()),
this, SLOT(invalidateCurrentIndex()));
- connect(m_model, SIGNAL(renamedVariable(QString)),
- this, SLOT(renamedVariable(QString)));
connect(m_model, SIGNAL(focusIndex(QModelIndex)),
this, SLOT(focusIndex(QModelIndex)));
@@ -460,13 +450,6 @@ EnvironmentWidget::~EnvironmentWidget()
m_model = 0;
}
-void EnvironmentWidget::renamedVariable(const QString &name)
-{
- QModelIndex index = m_model->variableToIndex(name);
- m_environmentTreeView->setCurrentIndex(index);
- m_environmentTreeView->setFocus();
-}
-
void EnvironmentWidget::focusIndex(const QModelIndex &index)
{
m_environmentTreeView->setCurrentIndex(index);
@@ -532,14 +515,12 @@ void EnvironmentWidget::addEnvironmentButtonClicked()
QModelIndex index = m_model->addVariable();
m_environmentTreeView->setCurrentIndex(index);
m_environmentTreeView->edit(index);
- updateButtons();
}
void EnvironmentWidget::removeEnvironmentButtonClicked()
{
const QString &name = m_model->indexToVariable(m_environmentTreeView->currentIndex());
m_model->resetVariable(name);
- updateButtons();
}
// unset in Merged Environment Mode means, unset if it comes from the base environment
@@ -551,7 +532,6 @@ void EnvironmentWidget::unsetEnvironmentButtonClicked()
m_model->resetVariable(name);
else
m_model->unsetVariable(name);
- updateButtons();
}
void EnvironmentWidget::environmentCurrentIndexChanged(const QModelIndex &current)