Fix massive numbers of threadsafety assertions by re-adding NS_INIT_ISUPPORTS, to make builds usable again. b=110531 sr=waterson

git-svn-id: svn://10.0.0.236/trunk@109616 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dbaron%fas.harvard.edu
2001-12-04 05:26:46 +00:00
parent 1a656d8aa7
commit 5797bffb8a

View File

@@ -83,10 +83,18 @@ protected:
class nsPropertyElement : public nsIPropertyElement
{
public:
nsPropertyElement() {};
nsPropertyElement(const PRUnichar *aKey,
const PRUnichar *aValue): mKey(aKey), mValue(aValue) {}
virtual ~nsPropertyElement() {};
nsPropertyElement()
{
NS_INIT_ISUPPORTS();
}
nsPropertyElement(const PRUnichar *aKey, const PRUnichar *aValue)
: mKey(aKey), mValue(aValue)
{
NS_INIT_ISUPPORTS();
}
virtual ~nsPropertyElement() {}
NS_DECL_ISUPPORTS