fixes bug 241876 "nsIDHashKey does not define a KeyEquals method" r+sr=bsmedberg

This commit is contained in:
darin%meer.net 2005-08-11 19:43:15 +00:00
Родитель 7b445794fb
Коммит 069e082aaf
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -235,7 +235,8 @@ public:
KeyType GetKey() const { return mID; }
KeyTypePointer GetKeyPointer() const { return &mID; }
PRBool operator==(KeyTypePointer aKey) const { return aKey->Equals(mID); }
PRBool KeyEquals(KeyTypePointer aKey) const { return aKey->Equals(mID); }
static KeyTypePointer KeyToPointer(KeyType aKey) { return &aKey; }
static PLDHashNumber HashKey(KeyTypePointer aKey);