*! Fix incomplete Group comparion operator

This commit is contained in:
Konstantin Isakov 2009-05-01 11:52:10 +00:00
parent 0dec20a2ce
commit eee0265ec9

View file

@ -78,7 +78,8 @@ struct Group
Group(): id( 0 ) {}
bool operator == ( Group const & other ) const
{ return id == other.id && name == other.name && icon == other.icon; }
{ return id == other.id && name == other.name && icon == other.icon &&
dictionaries == other.dictionaries; }
};
/// All the groups