b=170359 Make sure new code from bug 168448 uses NS_INIT_ISUPPORTS

r=javi sr=alecf
This commit is contained in:
kaie%netscape.com 2002-09-24 02:57:51 +00:00
Родитель dd2d1d9565
Коммит 4abf30cd96
2 изменённых файлов: 12 добавлений и 0 удалений

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

@ -68,6 +68,15 @@ static NS_DEFINE_CID(kNSSComponentCID, NS_NSSCOMPONENT_CID);
NS_IMPL_ISUPPORTS1(nsCRLManager, nsICRLManager)
nsCRLManager::nsCRLManager()
{
NS_INIT_ISUPPORTS();
}
nsCRLManager::~nsCRLManager()
{
}
NS_IMETHODIMP
nsCRLManager::ImportCrl (PRUint8 *aData, PRUint32 aLength, nsIURI * aURI, PRUint32 aType, PRBool doSilentDonwload, const PRUnichar* crlKey)
{

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

@ -42,6 +42,9 @@ class nsCRLManager : public nsICRLManager
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICRLMANAGER
nsCRLManager();
virtual ~nsCRLManager();
};
#endif