Make operators == const

Krazy complained about those.
This commit is contained in:
Tobias Hunger
2010-10-30 21:13:16 +02:00
parent f9035b1e9e
commit c8cf974f93
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ public:
QString value;
bool unset;
bool operator==(const EnvironmentItem &other)
bool operator==(const EnvironmentItem &other) const
{
return (unset == other.unset) && (name == other.name) && (value == other.value);
}