Attempting to fix os/2 and worms bustage. Add a protected default ctor to nsStyleContext. This should never be called since we never instantiate an nsDerivedSafe. r=bbaetz.

This commit is contained in:
bryner%netscape.com 2003-02-22 10:13:34 +00:00
Родитель cacbe124a2
Коммит 6a7db38d94
2 изменённых файлов: 8 добавлений и 0 удалений

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

@ -113,6 +113,10 @@ public:
#endif
protected:
// A default ctor is needed to use nsRefPtr (nsDerivedSafe) with this class.
// It should never be called.
nsStyleContext() { NS_NOTREACHED("nsStyleContext default ctor"); }
void AppendChild(nsStyleContext* aChild);
void RemoveChild(nsStyleContext* aChild);

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

@ -113,6 +113,10 @@ public:
#endif
protected:
// A default ctor is needed to use nsRefPtr (nsDerivedSafe) with this class.
// It should never be called.
nsStyleContext() { NS_NOTREACHED("nsStyleContext default ctor"); }
void AppendChild(nsStyleContext* aChild);
void RemoveChild(nsStyleContext* aChild);