Looks like I missed a header for the nsCStringKey -> nsStringKey change.

This commit is contained in:
tbogard%aol.net 1999-07-22 02:47:39 +00:00
Родитель 9e38b1bc3b
Коммит 8f76874619
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -22,13 +22,13 @@
#include "nsHashtable.h" // also defines nsCStringKey
#include "plstr.h"
class nsSocketKey : public nsCStringKey
class nsSocketKey : public nsStringKey
{
public:
// Constructor and Destructor
nsSocketKey(const char* i_Host, const PRInt32 i_port)
: nsCStringKey(i_Host), m_Port(i_port)
: nsStringKey(i_Host), m_Port(i_port)
{
}
@ -44,7 +44,7 @@ public:
PRBool Equals(const nsHashKey* i_Key) const
{
return (m_Port == ((nsSocketKey*)i_Key)->m_Port) &&
nsCStringKey::Equals(i_Key);
nsStringKey::Equals(i_Key);
}
PRBool operator==(const nsSocketKey& i_Key) const