mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
*! Fix incomplete Group comparion operator
This commit is contained in:
parent
0dec20a2ce
commit
eee0265ec9
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue