Environment: Mark hasKey(...) method as const

Change-Id: I8f355e6ead9136741af199d08935a0f3e7446110
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Tobias Hunger
2013-06-11 18:09:51 +02:00
parent 7ce368b3c0
commit f5b112c6e0
2 changed files with 2 additions and 2 deletions

View File

@@ -391,7 +391,7 @@ QList<EnvironmentItem> Environment::diff(const Environment &other) const
return result;
}
bool Environment::hasKey(const QString &key)
bool Environment::hasKey(const QString &key) const
{
return m_values.contains(key);
}