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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user