summaryrefslogtreecommitdiff
path: root/src/plugins/vcprojectmanager/vcprojectmodel/configuration.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/vcprojectmanager/vcprojectmodel/configuration.cpp')
-rw-r--r--src/plugins/vcprojectmanager/vcprojectmodel/configuration.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/plugins/vcprojectmanager/vcprojectmodel/configuration.cpp b/src/plugins/vcprojectmanager/vcprojectmodel/configuration.cpp
index be3ad241c8..d1c327c439 100644
--- a/src/plugins/vcprojectmanager/vcprojectmodel/configuration.cpp
+++ b/src/plugins/vcprojectmanager/vcprojectmodel/configuration.cpp
@@ -93,7 +93,6 @@ void Configuration::processNodeAttributes(const QDomElement &element)
if (domElement.name() == QLatin1String("Name")) {
m_name = domElement.value();
- m_oldName = m_name;
}
else
@@ -163,16 +162,6 @@ void Configuration::setName(const QString &name)
emit nameChanged();
}
-QString Configuration::oldName() const
-{
- return m_oldName;
-}
-
-void Configuration::setOldName(const QString &oldName)
-{
- m_oldName = oldName;
-}
-
QString Configuration::attributeValue(const QString &attributeName) const
{
return m_anyAttribute.value(attributeName);