From 663516e01692fabdb64efe8a16f42ffd89697ebc Mon Sep 17 00:00:00 2001 From: "dbaron%dbaron.org" Date: Wed, 30 Mar 2005 01:42:06 +0000 Subject: [PATCH] Use protected instead of private so VC6 gets less confused when nsDerivedSafe is involved. Hopefully fixing bustage. b=156716 --- layout/style/nsIMediaList.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout/style/nsIMediaList.h b/layout/style/nsIMediaList.h index 3aeb1f111c65..3b16cc874932 100644 --- a/layout/style/nsIMediaList.h +++ b/layout/style/nsIMediaList.h @@ -68,7 +68,7 @@ public: nsIAtom* MediumAt(PRInt32 aIndex) { return mArray[aIndex]; } void Clear() { mArray.Clear(); } -private: +protected: ~nsMediaList(); nsresult Delete(const nsAString & aOldMedium);