Forgot to say "public" in "class nsPropertiesFactory : nsIFactory".

This caused it to fail on Linux, but not on Windows. Go figure. Sigh.
This commit is contained in:
erik%netscape.com 1999-02-10 22:51:01 +00:00
Родитель 5bc85299cc
Коммит f2ac3bc7ac
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -21,7 +21,7 @@
#include "nsIFactory.h"
class nsPropertiesFactory : nsIFactory
class nsPropertiesFactory : public nsIFactory
{
public:
nsPropertiesFactory();

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

@ -21,7 +21,7 @@
#include "nsIFactory.h"
class nsPropertiesFactory : nsIFactory
class nsPropertiesFactory : public nsIFactory
{
public:
nsPropertiesFactory();